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

📄 helloworld3.idl

📁 < VC++编程宝典>>配套源代码, 对于想精通VC++的朋友很有帮助!
💻 IDL
字号:
// HelloWorld3.idl : IDL source for HelloWorld3.dll
//

// This file will be processed by the MIDL tool to
// produce the type library (HelloWorld3.tlb) and marshalling code.

import "oaidl.idl";
import "ocidl.idl";
#include "olectl.h"
	

	[
		object,
		uuid(5C655924-ECB0-11D1-B719-0080AD17AF01),
		dual,
		helpstring("IFull Interface"),
		pointer_default(unique)
	]
	interface IFull : IDispatch
	{
	};

[
	uuid(5C655918-ECB0-11D1-B719-0080AD17AF01),
	version(1.0),
	helpstring("HelloWorld3 1.0 Type Library")
]
library HELLOWORLD3Lib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(5C655925-ECB0-11D1-B719-0080AD17AF01),
		helpstring("Full Class")
	]
	coclass Full
	{
		[default] interface IFull;
	};
};

⌨️ 快捷键说明

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