resorgaddin.odl
来自「ResOrg 图形化管理Vc项目的资源ID的工具的源代码。 ResOrg - 」· ODL 代码 · 共 60 行
ODL
60 行
// 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 + =
减小字号Ctrl + -
显示快捷键?