wmfprop.idl

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

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

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

import "oaidl.idl";
import "ocidl.idl";
	[
		object,
		uuid(0D0E3557-8011-11D2-8CDB-505850C10000),
		dual,
		helpstring("IPropPage Interface"),
		pointer_default(unique)
	]
	interface IPropPage : IDispatch
	{
	};

[
	uuid(0D0E354B-8011-11D2-8CDB-505850C10000),
	version(1.0),
	helpstring("WMFProp 1.0 Type Library")
]
library WMFPROPLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(0D0E3558-8011-11D2-8CDB-505850C10000),
		helpstring("PropPage Class")
	]
	coclass PropPage
	{
		[default] interface IPropPage;
	};
};

⌨️ 快捷键说明

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