📄 addplug.odl
字号:
// AddPlug.odl : type library source for AddPlug.dll
// This file will be processed by the Make Type Library (mktyplib) tool to
// produce the type library (AddPlug.tlb).
[ uuid(773C237F-4F2D-4B57-B79E-9C1A06D90281), version(1.0),
helpstring ("ADDPLUG Developer Studio Add-in") ]
library AddPlug
{
importlib("stdole32.tlb");
importlib("devshl.dll");
importlib("ide\devdbg.pkg");
// Dual interface for CCommands
//
// All commands that your add-in adds to DevStudio
// must appear in this interface. You may use the
// ClassView to add methods to this interface, which
// will cause stub implementations of those methods to
// appear in your CCommands class.
[ uuid(F1CB90FF-1118-4F4F-8176-B43FACF50080),
oleautomation,
dual
]
interface ICommands : IDispatch
{
// methods
[id(1)]
HRESULT AddPlugCommandMethod();
[id(2), helpstring("method QuitVCIDE")] HRESULT QuitVCIDE();
};
// Class information for CCommands
[ uuid(50626972-C8C7-44B2-B93A-F76AC57F566D) ]
coclass Commands
{
[default] interface ICommands;
};
[ hidden, uuid(D3131329-EE72-4903-BE95-50457CD8ED7E) ]
coclass ApplicationEvents
{
[default] interface IApplicationEvents;
}
[ hidden, uuid(917612E4-F6B9-4967-B4AC-914F0668C836) ]
coclass DebuggerEvents
{
[default] interface IDebuggerEvents;
}
//{{AFX_APPEND_ODL}}
//}}AFX_APPEND_ODL}}
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -