📄 linecount.odl
字号:
/***************************************************************************/
/* NOTE: */
/* This document is copyright (c) by Oz Solomonovich, and is bound by the */
/* MIT open source license (www.opensource.org/licenses/mit-license.html). */
/* See License.txt for more information. */
/***************************************************************************/
// LineCount.odl : type library source for LineCount.dll
// This file will be processed by the Make Type Library (mktyplib) tool to
// produce the type library (LineCount.tlb).
[ uuid(04727E67-B52C-11D3-BA83-0000861DFCE7), version(1.0),
helpstring ("LINECOUNT Developer Studio Add-in") ]
library LineCount
{
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(04727E63-B52C-11D3-BA83-0000861DFCE7),
oleautomation,
dual
]
interface ICommands : IDispatch
{
// methods
[id(1), helpstring("method LC_Console")] HRESULT LC_Console();
[id(2), helpstring("method LC_Go")] HRESULT LC_Go();
};
// Class information for CCommands
[ uuid(04727E64-B52C-11D3-BA83-0000861DFCE7) ]
coclass Commands
{
[default] interface ICommands;
};
//{{AFX_APPEND_ODL}}
//}}AFX_APPEND_ODL}}
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -