simple18_i.c

来自「Thinkinc++English 电子书籍,英文版」· C语言 代码 · 共 51 行

C
51
字号
/* this file contains the actual definitions of */
/* the IIDs and CLSIDs */

/* link this file in with the server and any clients */


/* File created by MIDL compiler version 5.01.0164 */
/* at Thu Oct 06 23:07:50 2005
 */
/* Compiler settings for D:\Documents and Settings\Administrator\My Documents\我总结的知识\COM 组件设计与应用(十八)\ComP18\Simple18\Simple18.idl:
    Oicf (OptLev=i2), W1, Zp8, env=Win32, ms_ext, c_ext
    error checks: allocation ref bounds_check enum stub_data 
*/
//@@MIDL_FILE_HEADING(  )
#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 // __IID_DEFINED__

#ifndef CLSID_DEFINED
#define CLSID_DEFINED
typedef IID CLSID;
#endif // CLSID_DEFINED

const IID IID_IProperty = {0xE9BA8A9A,0x6422,0x4D6B,{0x92,0xC3,0xD0,0x28,0x71,0x0B,0x2A,0x68}};


const IID LIBID_SIMPLE18Lib = {0x88BD897C,0xA170,0x4D70,{0x81,0x41,0x65,0xCA,0x06,0x22,0x8A,0x2B}};


const CLSID CLSID_Property = {0x94F05861,0xD450,0x4A8B,{0x87,0xAD,0x8D,0x9C,0x83,0x5C,0x43,0xFE}};


#ifdef __cplusplus
}
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?