fileenc.idl

来自「COM 组建的开发」· IDL 代码 · 共 40 行

IDL
40
字号
// FileEnc.idl : IDL source for FileEnc.dll
//

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

import "oaidl.idl";
import "ocidl.idl";
	[
		object,
		uuid(0322FF7F-922E-4018-A05D-C709858B6FC0),
		dual,
		helpstring("IFileEncrpty Interface"),
		pointer_default(unique)
	]
	interface IFileEncrpty : IDispatch
	{
		[id(1), helpstring("method ShowDlg")] HRESULT ShowDlg(BOOL bIsEnc);
	};

[
	uuid(AC921BA7-6B40-4618-A3F8-F5702C01776F),
	version(1.0),
	helpstring("FileEnc 1.0 Type Library")
]
library FILEENCLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(CF16C107-5DC3-42C0-B42F-D092602A77C7),
		helpstring("FileEncrpty Class")
	]
	coclass FileEncrpty
	{
		[default] interface IFileEncrpty;
	};
};

⌨️ 快捷键说明

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