depends.idl
来自「大量windows shell编程例子」· IDL 代码 · 共 39 行
IDL
39 行
// Depends.idl : IDL source for Depends.dll
//
// This file will be processed by the MIDL tool to
// produce the type library (Depends.tlb) and marshalling code.
import "oaidl.idl";
import "ocidl.idl";
[
object,
uuid(5A72096D-808E-11D2-9DAF-00104B4C822A),
dual,
helpstring("IExeMenu Interface"),
pointer_default(unique)
]
interface IExeMenu : IDispatch
{
};
[
uuid(5A720961-808E-11D2-9DAF-00104B4C822A),
version(1.0),
helpstring("Depends 1.0 Type Library")
]
library DEPENDSLib
{
importlib("stdole32.tlb");
importlib("stdole2.tlb");
[
uuid(20349851-699F-11D2-9DAF-00104B4C822A),
helpstring("ExeMenu Class")
]
coclass ExeMenu
{
[default] interface IExeMenu;
};
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?