You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
44 lines
1.1 KiB
/*++
|
|
|
|
Copyright (c) 1997 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
frsinrpc.h
|
|
|
|
Abstract:
|
|
|
|
Structs shared with rpc functions. This will be fleshed out over time.
|
|
|
|
Author:
|
|
|
|
Billy Fuller 18-Apr-1997
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
//
|
|
// The version vector
|
|
//
|
|
typedef struct _COMM_PACKET {
|
|
ULONG Major; // major version number
|
|
ULONG Minor; // minor version number
|
|
ULONG CsId; // command server id
|
|
ULONG MemLen; // allocated memory
|
|
#ifdef MIDL_PASS
|
|
[range(0, 256 * 1024)] ULONG PktLen; // data length
|
|
#else MIDL_PASS
|
|
ULONG PktLen; // data length
|
|
#endif MIDL_PASS
|
|
ULONG UpkLen; // unpack length
|
|
#ifdef MIDL_PASS
|
|
[size_is(PktLen)] UCHAR *Pkt; // blob in RPC syntax
|
|
[ignore] void *DataName;
|
|
[ignore] void *DataHandle;
|
|
#else MIDL_PASS
|
|
UCHAR *Pkt; // blob in C syntax
|
|
PWCHAR DataName;
|
|
HANDLE DataHandle;
|
|
#endif MIDL_PASS
|
|
} COMM_PACKET, *PCOMM_PACKET;
|