Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

64 lines
991 B

/*++
Copyright (c) 1991-1993 Microsoft Corporation
Module Name:
rpc.h
Abstract:
Master include file for RPC applications.
--*/
#ifndef __RPC_H__
#define __RPC_H__
// Set the packing level for RPC structures.
#pragma warning( disable:4103 )
#pragma pack(2)
#ifdef __cplusplus
extern "C" {
#endif
#define __RPC_DOS__
#ifndef __MIDL_USER_DEFINED
#define midl_user_allocate MIDL_user_allocate
#define midl_user_free MIDL_user_free
#define __MIDL_USER_DEFINED
#endif
typedef unsigned short RPC_STATUS;
// Added 2 words for DOS mail.
#define RPCXCWORD 9
#define __RPC_FAR __far
#define __RPC_API __far __pascal
#define __RPC_USER __far __pascal
#define __RPC_STUB __far __pascal
#define RPC_ENTRY __pascal __loadds __far
typedef void _far * I_RPC_HANDLE;
#include "rpcdce.h"
#include "rpcnsi.h"
#include "rpcerr.h"
#include "rpcx86.h"
#ifdef __cplusplus
}
#endif
// Reset the packing level.
#pragma pack()
#pragma warning( default:4103 )
#endif // __RPC_H__