Source code of Windows XP (NT5)
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.

24 lines
408 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. // for sapi/sapi/recognizer.h
  15. const IID IID__ISpRecognizerBackDoor = { 0x635DAEDE,0x0ACF,0x4b2e,{0xB9,0xDE,0x8C,0xD2,0xBA,0x7F,0x61,0x83}};
  16. #ifdef __cplusplus
  17. }
  18. #endif