home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / htmlguid.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  1.8 KB  |  45 lines

  1. //*********************************************************************
  2. //*                  Microsoft Windows                               **
  3. //*            Copyright(c) Microsoft Corp., 1995-1998               **
  4. //*********************************************************************
  5.  
  6. //
  7. //    HTMLGUID.H - GUID definition for HTML viewer object
  8. //
  9.  
  10. #ifndef _HTMLGUID_H_
  11. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  12. #define _HTMLGUID_H_
  13.  
  14. // GUID for HTML viewer is: {25336920-03F9-11cf-8FD0-00AA00686F13}
  15. DEFINE_GUID(CLSID_HTMLViewer, 0x25336920, 0x3f9, 0x11cf, 0x8f, 0xd0, 0x0, 0xaa, 0x0, 0x68, 0x6f, 0x13);
  16.  
  17. // GUID for BSCB proxy is: {25336922-03F9-11cf-8FD0-00AA00686F13}
  18. DEFINE_GUID(CLSID_HTMLBSCBProxy, 0x25336922, 0x3f9, 0x11cf, 0x8f, 0xd0, 0x0, 0xaa, 0x0, 0x68, 0x6f, 0x13);
  19.  
  20. // The GUID used to identify the TypeLib of the HTML Page
  21. // {71BC8840-60BB-11cf-8B97-00AA00476DA6}
  22. DEFINE_GUID(GUID_PageTL,
  23. 0x71bc8840, 0x60bb, 0x11cf, 0x8b, 0x97, 0x0, 0xaa, 0x0, 0x47, 0x6d, 0xa6);
  24.  
  25. // The GUID used to identify the Primary dispinterface of the HTML Page
  26. // {71BC8841-60BB-11cf-8B97-00AA00476DA6}
  27. DEFINE_GUID(IID_PageProps,
  28. 0x71bc8841, 0x60bb, 0x11cf, 0x8b, 0x97, 0x0, 0xaa, 0x0, 0x47, 0x6d, 0xa6);
  29.  
  30. // The GUID used to identify the Event dispinterface of the HTML Page
  31. // The page events are currently commented out but will be added later
  32. // so I grabbed a guid for the events now.
  33. // {71BC8842-60BB-11cf-8B97-00AA00476DA6}
  34. DEFINE_GUID(IID_PageEvents,
  35. 0x71bc8842, 0x60bb, 0x11cf, 0x8b, 0x97, 0x0, 0xaa, 0x0, 0x47, 0x6d, 0xa6);
  36.  
  37. // The GUID used to identify the coclass of the HTML Page
  38. // {71BC8843-60BB-11cf-8B97-00AA00476DA6}
  39. DEFINE_GUID(CLSID_Page,
  40. 0x71bc8843, 0x60bb, 0x11cf, 0x8b, 0x97, 0x0, 0xaa, 0x0, 0x47, 0x6d, 0xa6);
  41.  
  42.  
  43. #pragma option pop /*P_O_Pop*/
  44. #endif // _HTMLGUID_H_
  45.