altcomm.idl
来自「这个程序主要是在WinCE环境下开发访问SQLCE数据库程序的例子程序」· IDL 代码 · 共 45 行
IDL
45 行
// 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 + =
减小字号Ctrl + -
显示快捷键?