home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / vile-src.zip / vile-8.1 / w32reg.h < prev    next >
C/C++ Source or Header  |  1998-08-15  |  1KB  |  40 lines

  1. /*
  2.  * w32reg.h:  Winvile OLE registry data (currently applicable only
  3.  *            to OLE Automation).
  4.  *
  5.  * $Header: /usr/build/vile/vile/RCS/w32reg.h,v 1.1 1998/08/15 20:42:00 cmorgan Exp $
  6.  */
  7.  
  8. #ifndef W32REG_H
  9. #define W32REG_H
  10.  
  11. /* VTL -- (Vile Type Library) version numbering macros */
  12. #define  VTL_MAJOR    1
  13. #define  VTL_MINOR    0
  14. #define  VTL_VERSTR   VTL_VER_TO_STR(VTL_MAJOR) "." VTL_VER_TO_STR(VTL_MINOR)
  15.  
  16. #define  VTL_VER_TO_STR(x)    VTL_TMP_MAC(x)
  17. #define  VTL_TMP_MAC(x)       #x
  18.  
  19. /* {664D8543-2FDD-11d2-B8E4-0020AF0F4354} */
  20. #define LIBID_VILEAUTO_KEY   "{664D8543-2FDD-11d2-B8E4-0020AF0F4354}"
  21. DEFINE_GUID(LIBID_VileAuto,
  22. 0x664d8543, 0x2fdd, 0x11d2, 0xb8, 0xe4, 0x0, 0x20, 0xaf, 0xf, 0x43, 0x54);
  23.  
  24. /* {664D8544-2FDD-11d2-B8E4-0020AF0F4354} */
  25. #define IID_IVILEAUTO_KEY    "{664D8544-2FDD-11d2-B8E4-0020AF0F4354}"
  26. DEFINE_GUID(IID_IVileAuto,
  27. 0x664d8544, 0x2fdd, 0x11d2, 0xb8, 0xe4, 0x0, 0x20, 0xaf, 0xf, 0x43, 0x54);
  28.  
  29.  
  30. /* {664D8545-2FDD-11d2-B8E4-0020AF0F4354} */
  31. #define CLSID_VILEAUTO_KEY   "{664D8545-2FDD-11d2-B8E4-0020AF0F4354}"
  32. DEFINE_GUID(CLSID_VileAuto,
  33. 0x664d8545, 0x2fdd, 0x11d2, 0xb8, 0xe4, 0x0, 0x20, 0xaf, 0xf, 0x43, 0x54);
  34.  
  35.  
  36. /* {00020424-0000-0000-C000-000000000046} */
  37. #define CLSID_PROXY_STUB     "{00020424-0000-0000-C000-000000000046}"
  38.  
  39. #endif
  40.