Leaked source code of windows server 2003
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.

42 lines
1.7 KiB

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