bank_i.c

来自「本程序是利用com原理开发的一个ATM机与银行之间的分布式应用」· C语言 代码 · 共 47 行

C
47
字号
/* 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 Fri Oct 14 09:03:25 2005
 */
/* Compiler settings for F:\VC书目\Bank\Bank.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_IAccount = {0x7354C409,0xF375,0x474F,{0xAA,0x74,0x25,0x78,0x6D,0x7B,0x55,0xD4}};
const IID LIBID_BANKLib = {0xFA43A1FD,0x3973,0x4EE1,{0x80,0x16,0x75,0x25,0x97,0x77,0x31,0xCF}};
const CLSID CLSID_Account = {0x820DEDC2,0xD384,0x471B,{0x9B,0x81,0xDE,0x71,0xEE,0x7C,0xC9,0x74}};


#ifdef __cplusplus
}
#endif

⌨️ 快捷键说明

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