sample05_i.c

来自「vc百例之三」· 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 Mar 18 08:17:02 2004
 */
/* Compiler settings for K:\配套程序\Sample05\Sample05.odl:
    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 LIBID_Sample05 = {0xC9374291,0x9B5A,0x43C4,{0xBE,0xDC,0x97,0x96,0x50,0xD9,0x18,0x6A}};


const IID DIID_ISample05 = {0xD9893378,0xBE73,0x4C57,{0xB2,0xEB,0xCB,0xCD,0x16,0x02,0x7A,0xBA}};


const CLSID CLSID_Sample05 = {0xA4B909C9,0xE6B6,0x4253,{0x95,0xD2,0xD0,0xAE,0x38,0x2E,0x86,0x0B}};


#ifdef __cplusplus
}
#endif

⌨️ 快捷键说明

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