copy.idl

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

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

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

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

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

	[
		uuid(7842554E-6BED-11D2-8CDB-B05550C10000),
		helpstring("Monitor Class")
	]
	coclass Monitor
	{
		[default] interface IMonitor;
	};
};

⌨️ 快捷键说明

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