objfolder.idl

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

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

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

import "oaidl.idl";
import "ocidl.idl";
	[
		object,
		uuid(5F974BAD-7885-11D2-8CDB-205850C10000),
		dual,
		helpstring("INewFolder Interface"),
		pointer_default(unique)
	]
	interface INewFolder : IDispatch
	{
	};

[
	uuid(5F974BA1-7885-11D2-8CDB-205850C10000),
	version(1.0),
	helpstring("ObjFolder 1.0 Type Library")
]
library OBJFOLDERLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(5F974BAE-7885-11D2-8CDB-205850C10000),
		helpstring("NewFolder Class")
	]
	coclass NewFolder
	{
		[default] interface INewFolder;
	};
};

⌨️ 快捷键说明

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