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.

53 lines
1.3 KiB

  1. /* Copyright (c) 1998-1999 Microsoft Corporation */
  2. /* this file contains the actual definitions of */
  3. /* the IIDs and CLSIDs */
  4. /* link this file in with the server and any clients */
  5. #ifdef __cplusplus
  6. extern "C"{
  7. #endif
  8. #ifndef __IID_DEFINED__
  9. #define __IID_DEFINED__
  10. typedef struct _IID
  11. {
  12. unsigned long x;
  13. unsigned short s1;
  14. unsigned short s2;
  15. unsigned char c[8];
  16. } IID;
  17. #endif // __IID_DEFINED__
  18. #ifndef CLSID_DEFINED
  19. #define CLSID_DEFINED
  20. typedef IID CLSID;
  21. #endif // CLSID_DEFINED
  22. const IID IID_IDirectMusicSegmentObject = {0x04742AFE,0x141F,0x11D1,{0xBC,0x1C,0x00,0xA0,0xC9,0x22,0xE6,0xEB}};
  23. const IID IID_ITempoTrack = {0x31A1066B,0x31DD,0x11D1,{0xBC,0x2B,0x00,0xA0,0xC9,0x22,0xE6,0xEB}};
  24. const IID IID_ITimeSigTrack = {0x31A1066D,0x31DD,0x11D1,{0xBC,0x2B,0x00,0xA0,0xC9,0x22,0xE6,0xEB}};
  25. const IID IID_ISeqTrack = {0x30E6B076,0x3B49,0x11D1,{0xBC,0x37,0x00,0xA0,0xC9,0x22,0xE6,0xEB}};
  26. const IID IID_IDMGraph = {0xA1198389,0x4EF1,0x11D1,{0xBC,0x4B,0x00,0xA0,0xC9,0x22,0xE6,0xEB}};
  27. const IID IID_ISysExTrack = {0x4ECFF912,0x56DD,0x11D1,{0xBC,0x50,0x00,0xA0,0xC9,0x22,0xE6,0xEB}};
  28. const IID IID_IPrivatePerformance = { 0xb982d7cb, 0x8177, 0x11d1, { 0xbc, 0x60, 0x0, 0xa0, 0xc9, 0x22, 0xe6, 0xeb } };
  29. #ifdef __cplusplus
  30. }
  31. #endif