📄 spelly.odl
字号:
// Spelly.odl : type library source for Spelly.dll
// This file will be processed by the Make Type Library (mktyplib) tool to
// produce the type library (Spelly.tlb).
[ uuid(0623E7AC-B9D0-11D3-AD15-000000000000), version(1.0),
helpstring ("SPELLY Developer Studio Add-in") ]
library Spelly
{
importlib("stdole32.tlb");
// 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(0623E7A8-B9D0-11D3-AD15-000000000000),
oleautomation,
dual
]
interface ICommands : IDispatch
{
// methods
[id(1)]
HRESULT SpellyCommandMethod();
[id(2)]
HRESULT SpellyNoCodeCommandMethod();
};
// Class information for CCommands
[ uuid(0623E7A9-B9D0-11D3-AD15-000000000000) ]
coclass Commands
{
[default] interface ICommands;
};
//{{AFX_APPEND_ODL}}
//}}AFX_APPEND_ODL}}
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -