Source code of Windows XP (NT5)
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.

34 lines
523 B

  1. /*++
  2. Copyright (c) 1991-1995 Microsoft Corporation
  3. Module Name:
  4. rpcbase.h
  5. Abstract:
  6. Basic definitions for OLE
  7. --*/
  8. #ifndef __RPCBASE_H__
  9. #define __RPCBASE_H__
  10. #if (_MSC_VER >= 800) || defined(_STDCALL_SUPPORTED)
  11. #define __RPC_FAR
  12. #define __RPC_API __stdcall
  13. #define __RPC_USER __stdcall
  14. #define __RPC_STUB __stdcall
  15. #define RPC_ENTRY __stdcall
  16. #else
  17. #define __RPC_FAR
  18. #define __RPC_API
  19. #define __RPC_USER
  20. #define __RPC_STUB
  21. #define RPC_ENTRY
  22. #endif
  23. typedef unsigned char byte;
  24. #endif // __RPCBASE_H__