⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hook.idl

📁 大量windows shell编程例子
💻 IDL
字号:
// Hook.idl : IDL source for Hook.dll
//

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

import "oaidl.idl";
import "ocidl.idl";
	[
		object,
		uuid(FC3CF1DA-7494-11D2-9DAF-00104B4C822A),
		dual,
		helpstring("IShowHook Interface"),
		pointer_default(unique)
	]
	interface IShowHook : IDispatch
	{
	};

[
	uuid(FC3CF1CE-7494-11D2-9DAF-00104B4C822A),
	version(1.0),
	helpstring("Hook 1.0 Type Library")
]
library HOOKLib
{
	importlib("stdole32.tlb");
	importlib("stdole2.tlb");

	[
		uuid(FC3CF1DB-7494-11D2-9DAF-00104B4C822A),
		helpstring("ShowHook Class")
	]
	coclass ShowHook
	{
		[default] interface IShowHook;
	};
};

⌨️ 快捷键说明

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