summaryrefslogtreecommitdiffstats
path: root/public/sdk/inc/ofsmsg.h
diff options
context:
space:
mode:
Diffstat (limited to 'public/sdk/inc/ofsmsg.h')
-rw-r--r--public/sdk/inc/ofsmsg.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/public/sdk/inc/ofsmsg.h b/public/sdk/inc/ofsmsg.h
new file mode 100644
index 000000000..0ebea07f8
--- /dev/null
+++ b/public/sdk/inc/ofsmsg.h
@@ -0,0 +1,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