From e611b132f9b8abe35b362e5870b74bce94a1e58e Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 16 May 2020 20:51:50 -0700 Subject: initial commit --- public/sdk/inc/ofsmsg.h | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 public/sdk/inc/ofsmsg.h (limited to 'public/sdk/inc/ofsmsg.h') 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 -- cgit v1.2.3