⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 altcomm.idl

📁 这个程序主要是在WinCE环境下开发访问SQLCE数据库程序的例子程序
💻 IDL
字号:
// ALTCOMM.idl : IDL source for ALTCOMM
//

// This file will be processed by the MIDL tool to
// produce the type library (ALTCOMM.tlb) and marshalling code.

import "oaidl.idl";
import "ocidl.idl";
import "atliface.idl";

[
	object,
	uuid(47FF4B66-3C27-4CB1-8DE0-80A127BF6322),
	helpstring("IDictionary Interface"),
	pointer_default(unique)
]
interface IDictionary : IUnknown{
	[helpstring("method InitialDict")] HRESULT InitialDict([in] BSTR bStrDict);
	[helpstring("method AddWord")] HRESULT AddWord([in] BSTR SrcWord, [in] BSTR DestWord);
	[helpstring("method ModifyWord")] HRESULT ModifyWord([in] BSTR SrcWord, [in] BSTR DestWord);
	[helpstring("method DeleteWord")] HRESULT DeleteWord([in] BSTR bStrWord);
	[helpstring("method QueryWord")] HRESULT QueryWord([in] BSTR bStrWord, [out,retval] BSTR* bStrDest);
	[helpstring("method SyncDictLib")] HRESULT SyncDictLib(void);
	[helpstring("method Hello")] HRESULT Hello([in] LONG HelloNo, [out,retval] LONG* pHello);
};
[
	uuid(9FA57F5C-4541-4338-919C-DBACD1DB5569),
	version(1.0),
	helpstring("ALTCOMM 1.0 Type Library")
]
library ALTCOMMLib
{
	importlib("stdole2.tlb");
	interface IDocHostUIHandlerDispatch;
	interface IAxWinAmbientDispatchEx;
	[
		uuid(DC4BF39F-1D68-4584-9D52-76D886A26B46),
		helpstring("Dictionary Class")
	]
	coclass Dictionary
	{
		[default] interface IDictionary;
	};
};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -