spelly.odl

来自「语法检查程序」· ODL 代码 · 共 46 行

ODL
46
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?