droptext.idl

来自「大量windows shell编程例子」· IDL 代码 · 共 39 行

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

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

import "oaidl.idl";
import "ocidl.idl";
	[
		object,
		uuid(3E72260E-80E5-11D2-8CDB-205850C10000),
		dual,
		helpstring("IStrAdd Interface"),
		pointer_default(unique)
	]
	interface IStrAdd : IDispatch
	{
	};

[
	uuid(3E7225FF-80E5-11D2-8CDB-205850C10000),
	version(1.0),
	helpstring("DropText 1.0 Type Library")
]
library DROPTEXTLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(3E72260F-80E5-11D2-8CDB-205850C10000),
		helpstring("StrAdd Class")
	]
	coclass StrAdd
	{
		[default] interface IStrAdd;
	};
};

⌨️ 快捷键说明

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