simpleext.idl

来自「Windows Shell扩展编程完全指南」· IDL 代码 · 共 39 行

IDL
39
字号
// SimpleExt.idl : IDL source for SimpleExt.dll
//

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

import "oaidl.idl";
import "ocidl.idl";
	[
		object,
		uuid(5E2121ED-0300-11D4-8D3B-444553540000),
		dual,
		helpstring("ISimpleShlExt Interface"),
		pointer_default(unique)
	]
	interface ISimpleShlExt : IDispatch
	{
	};

[
	uuid(5E2121E1-0300-11D4-8D3B-444553540000),
	version(1.0),
	helpstring("SimpleExt 1.0 Type Library")
]
library SIMPLEEXTLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(5E2121EE-0300-11D4-8D3B-444553540000),
		helpstring("SimpleShlExt Class")
	]
	coclass SimpleShlExt
	{
		[default] interface ISimpleShlExt;
	};
};

⌨️ 快捷键说明

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