📄 resorgaddin.odl
字号:
// ResOrgAddIn.odl : type library source for ResOrgAddIn.dll
// This file will be processed by the Make Type Library (mktyplib) tool to
// produce the type library (ResOrgAddIn.tlb).
[ uuid(900921E9-27E1-11D4-A01E-00AA00A65FA1), version(1.0),
helpstring ("RESORG Developer Studio Add-in") ]
library ResOrg
{
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(900921E5-27E1-11D4-A01E-00AA00A65FA1),
oleautomation,
dual
]
interface ICommands : IDispatch
{
// methods
[id(1)]
HRESULT ResOrgShowMethod();
HRESULT ResOrgOptionsMethod();
HRESULT ResOrgAboutMethod();
};
// Class information for CCommands
[ uuid(900921E6-27E1-11D4-A01E-00AA00A65FA1) ]
coclass Commands
{
[default] interface ICommands;
};
[ hidden, uuid(900921E7-27E1-11D4-A01E-00AA00A65FA1) ]
coclass ApplicationEvents
{
[default] interface IApplicationEvents;
}
[ hidden, uuid(900921E8-27E1-11D4-A01E-00AA00A65FA1) ]
coclass DebuggerEvents
{
[default] interface IDebuggerEvents;
}
//{{AFX_APPEND_ODL}}
//}}AFX_APPEND_ODL}}
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -