summaryrefslogtreecommitdiffstats
path: root/public/sdk/inc/ofsmsg.h
blob: 0ebea07f8f1e4e66e74899d6b499cc9cf0444a14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//+---------------------------------------------------------------------------
//  Copyright (C) 1991, Microsoft Corporation.
//
//  File:       ofsmrshl.h
//
//  Contents:   Private definitions for OFS-based marshalling and unmarshalling
//			Across the Kernel boundry
//
//  History:    5 Jun 93    Robertfe	Created
//
//----------------------------------------------------------------------------

#ifndef __OFSMSG_H__
#define __OFSMSG_H__

typedef struct _message {
    ULONG posn;
    ULONG size;
    UCHAR *buffer;
} MESSAGE;

#ifdef __cplusplus
extern "C" {
#endif
	
NTSTATUS SendReceive(
    HANDLE hf,
    ULONG procnum,
    MESSAGE *_pmsg,
    IO_STATUS_BLOCK *piosb);

#ifdef __cplusplus
};
#endif

#endif