⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 contain.idl

📁 《DCOM入门》随书源码 Chapter 1 (Distributed Computing) N/A Chapter 2 (DCOM Overview) N/A Chapter 3 (Objec
💻 IDL
字号:
//*******************************************************************
//**  GUIDs are generated from guidgen.exe
//*******************************************************************

//*******************************************************************
//** Include the specification of the IUnknown interface
//*******************************************************************
import "unknwn.idl";

//*******************************************************************
//**  IDictionary which delegates its method to the inner object
//*******************************************************************
[ object, uuid(F122AFB0-C465-11d1-83B4-006008CDD9AE) ]
interface IDictionary : IUnknown
{
    HRESULT LookUp();
}


// notice you don't have to have specify library and coclass
// if you don't want to create a typelibary

//*******************************************************************
//**  Spit out the class ID in the generated header file
//*******************************************************************
// {80DA2D21-C466-11d1-83B4-006008CDD9AE}
cpp_quote("DEFINE_GUID(CLSID_Dictionary, 0x80da2d21, 0xc466, 0x11d1, 0x83, 0xb4, 0x0, 0x60, 0x8, 0xcd, 0xd9, 0xae);")

//*******************************************************************
//**  Spit out IID_IDictionary in the generated header file
//*******************************************************************
// {F122AFB0-C465-11d1-83B4-006008CDD9AE}
cpp_quote("DEFINE_GUID(IID_IDictionary, 0xf122afb0, 0xc465, 0x11d1, 0x83, 0xb4, 0x0, 0x60, 0x8, 0xcd, 0xd9, 0xae);")

⌨️ 快捷键说明

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