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.0 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1995.
  5. //
  6. // File: urlguids.cxx
  7. //
  8. // Contents: Defines GUIDS used in this DLL.
  9. //
  10. //
  11. // History: 10-02-1996 JohannP (Johann Posch) Created
  12. //
  13. //----------------------------------------------------------------------------
  14. //#include <urlint.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. #ifndef GUID_DEFINED
  19. #define GUID_DEFINED
  20. typedef struct _GUID
  21. {
  22. unsigned long x;
  23. unsigned short s1;
  24. unsigned short s2;
  25. unsigned char c[8];
  26. } GUID;
  27. #endif // GUID_DEFINED
  28. const GUID CLSID_MsHtml = { 0x25336920, 0x03F9, 0x11cf, {0x8F, 0xD0, 0x00, 0xAA, 0x00, 0x68, 0x6F, 0x13} };
  29. const GUID IID_ITransactionData = { 0x79eac9cf, 0xbaf9, 0x11ce, {0x8c, 0x82, 0x00, 0xaa, 0x00, 0x4b, 0xa9, 0x0b} };
  30. const GUID IID_ITransProtocolSink = { 0x7291765a, 0xa83f, 0x401d, {0x81, 0xa6, 0x11, 0x2c, 0x3a, 0x46, 0x8a, 0x7b} };
  31. #ifdef __cplusplus
  32. }
  33. #endif