1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
-
-
-
-
-
-
-
-
-
-
- #ifdef __cplusplus
- extern "C"{
- #endif
-
-
- #ifndef __IID_DEFINED__
- #define __IID_DEFINED__
-
- typedef struct _IID
- {
- unsigned long x;
- unsigned short s1;
- unsigned short s2;
- unsigned char c[8];
- } IID;
-
- #endif
-
- #ifndef CLSID_DEFINED
- #define CLSID_DEFINED
- typedef IID CLSID;
- #endif
-
- const IID LIBID_SAMPLETTSENGLib = {0x7192AA2F,0xF759,0x43e9,{0x91,0xE7,0x22,0x63,0x71,0xEF,0x6B,0x2F}};
-
-
- const CLSID CLSID_SampleTTSEngine = {0xBE985C8D,0xBE32,0x4A22,{0xAA,0x93,0x55,0xC1,0x6A,0x6D,0x1D,0x91}};
-
-
- #ifdef __cplusplus
- }
- #endif
-
|