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.

35 lines
587 B

  1. #ifdef __cplusplus
  2. extern "C"{
  3. #endif
  4. #ifndef __IID_DEFINED__
  5. #define __IID_DEFINED__
  6. typedef struct _IID
  7. {
  8. unsigned long x;
  9. unsigned short s1;
  10. unsigned short s2;
  11. unsigned char c[8];
  12. } IID;
  13. #endif // __IID_DEFINED__
  14. #define GUID IID
  15. #ifndef CLSID_DEFINED
  16. #define CLSID_DEFINED
  17. typedef IID CLSID;
  18. #endif // CLSID_DEFINED
  19. /* 1443904b-34e4-40f6-b30f-6beb81267b80 */
  20. const CLSID CLSID_SpeechUIServer = {
  21. 0x1443904b,
  22. 0x34e4,
  23. 0x40f6,
  24. {0xb3, 0x0f, 0x6b, 0xeb, 0x81, 0x26, 0x7b, 0x80}
  25. };
  26. #ifdef __cplusplus
  27. }
  28. #endif