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

4 years ago
  1. /*++
  2. Copyright (c) 1991-1993 Microsoft Corporation
  3. Module Name:
  4. rpc.h
  5. Abstract:
  6. Master include file for RPC applications.
  7. --*/
  8. #ifndef __RPC_H__
  9. #define __RPC_H__
  10. // Set the packing level for RPC structures.
  11. #pragma warning( disable:4103 )
  12. #pragma pack(2)
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. #define __RPC_DOS__
  17. #ifndef __MIDL_USER_DEFINED
  18. #define midl_user_allocate MIDL_user_allocate
  19. #define midl_user_free MIDL_user_free
  20. #define __MIDL_USER_DEFINED
  21. #endif
  22. typedef unsigned short RPC_STATUS;
  23. // Added 2 words for DOS mail.
  24. #define RPCXCWORD 9
  25. #define __RPC_FAR __far
  26. #define __RPC_API __far __pascal
  27. #define __RPC_USER __far __pascal
  28. #define __RPC_STUB __far __pascal
  29. #define RPC_ENTRY __pascal __loadds __far
  30. typedef void _far * I_RPC_HANDLE;
  31. #include "rpcdce.h"
  32. #include "rpcnsi.h"
  33. #include "rpcerr.h"
  34. #include "rpcx86.h"
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38. // Reset the packing level.
  39. #pragma pack()
  40. #pragma warning( default:4103 )
  41. #endif // __RPC_H__