filter.idl

来自「中间件编写示例 COM与.NET组件服务」· IDL 代码 · 共 30 行

IDL
30
字号
// Filter.idl : IDL source for Filter.dll
//

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

import "oaidl.idl";
import "ocidl.idl";

[
	uuid(CB10E8BD-94B5-4BF5-A609-B2828C39F2F0),
	version(1.0),
	helpstring("Filter 1.0 Type Library")
]
library FILTERLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");
	importlib("es.dll");

	[
		uuid(6CEAD501-7799-4C99-86B5-907039E2A0FD),
		helpstring("MyFilter Class")
	]
	coclass MyFilter
	{
		[default] interface IMultiInterfacePublisherFilter;
	};
};

⌨️ 快捷键说明

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