menudemo.idl

来自「Windows资源浏览器外壳扩展右键菜单功能的实例程序」· IDL 代码 · 共 39 行

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

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

import "oaidl.idl";
import "ocidl.idl";
	[
		object,
		uuid(56D81A95-F308-4C3C-B373-5F18D2850893),
		dual,
		helpstring("IgxMenu Interface"),
		pointer_default(unique)
	]
	interface IgxMenu : IDispatch
	{
	};

[
	uuid(0535DACF-A79B-4A2A-943D-A213EC69C466),
	version(1.0),
	helpstring("MenuDemo 1.0 Type Library")
]
library MENUDEMOLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(7947BB85-DE33-4203-8071-0AD56A56EDA9),
		helpstring("gxMenu Class")
	]
	coclass gxMenu
	{
		[default] interface IgxMenu;
	};
};

⌨️ 快捷键说明

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