dcomExtent.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* dcomExtent.h - header for VxDCOM ORPC_EXTENT*/
  2. /* Copyright (c) 1999 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01c,28feb00,dbs  fix extent size
  7. 01b,15feb00,dbs  add all extent-related defs
  8. 01a,13aug99,drm  created
  9. */
  10. #ifndef __INCdcomExtent_h
  11. #define __INCdcomExtent_h
  12. #ifdef _WIN32
  13. #include <windows.h>
  14. #else
  15. #include "comLib.h"
  16. #endif
  17. // defines
  18. #define VXDCOM_MAX_EXTENT_DATA  sizeof(VXDCOMEXTENT)
  19. #define VXDCOM_MAX_EXTENT_ARRAY 8
  20. //////////////////////////////////////////////////////////////////////////
  21. //
  22. // GUID and structure for VxDCOM extenstions
  23. //
  24. const GUID GUID_VXDCOM_EXTENT =
  25.     {0x5c460fb8,0x8b2,0x11d3,{0x83,0x45,0x0,0x60,0x8,0x1e,0x90,0x8}};
  26. typedef struct
  27.     {
  28.     long priority; // client propagated priority
  29.     long dummy; // force size up to 8
  30.     } VXDCOMEXTENT;
  31. #endif