home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / AutoPC / apcsdk10.exe / data1.cab / Emulation_Include_Files / rpcdce.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-13  |  989 b   |  58 lines

  1. /*++
  2. THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  3. ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  4. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  5. PARTICULAR PURPOSE.
  6. Copyright (c) 1995, 1996, 1997  Microsoft Corporation
  7.  
  8. Module Name:  
  9.  
  10. rpcdce.h
  11.  
  12. Abstract:  
  13.  
  14.     This module contains the DCE RPC runtime APIs.
  15.     
  16. Notes: 
  17.  
  18.  
  19. --*/
  20.  
  21. #ifndef __RPCDCE_H__
  22. #define __RPCDCE_H__
  23.  
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27.  
  28. #define IN
  29. #define OUT
  30. #define OPTIONAL
  31.  
  32. #ifndef GUID_DEFINED
  33. #define GUID_DEFINED
  34. typedef struct _GUID
  35. {
  36.     unsigned long Data1;
  37.     unsigned short Data2;
  38.     unsigned short Data3;
  39.     unsigned char Data4[8];
  40. } GUID, *PGUID;
  41. #endif /* GUID_DEFINED */
  42.  
  43. #ifndef UUID_DEFINED
  44. #define UUID_DEFINED
  45. typedef GUID UUID;
  46. #ifndef uuid_t
  47. #define uuid_t UUID
  48. #endif
  49. #endif
  50.  
  51. typedef void __RPC_FAR * RPC_IF_HANDLE;
  52.  
  53. #ifdef __cplusplus
  54. }
  55. #endif
  56.  
  57. #endif /* __RPCDCE_H__ */
  58.