gb2big.idl
来自「代码实现了对一组字符串内存」· IDL 代码 · 共 42 行
IDL
42 行
// Gb2Big.idl : IDL source for Gb2Big.dll
//
// This file will be processed by the MIDL tool to
// produce the type library (Gb2Big.tlb) and marshalling code.
import "oaidl.idl";
import "ocidl.idl";
[
object,
uuid(F7810042-11A7-11D4-BC3A-0010B5012266),
dual,
helpstring("IBIG5 Interface"),
pointer_default(unique)
]
interface IBIG5 : IDispatch
{
[id(1), helpstring("method Convert")] HRESULT Convert([in] VARIANT varInData, [out,retval] VARIANT* varOutData);
[propget, id(2), helpstring("property TrunType")] HRESULT TrunType([out, retval] short *pVal);
[propput, id(2), helpstring("property TrunType")] HRESULT TrunType([in] short newVal);
};
[
uuid(F7810035-11A7-11D4-BC3A-0010B5012266),
version(1.0),
helpstring("Gb2Big 1.0 Type Library")
]
library GB2BIGLib
{
importlib("stdole32.tlb");
importlib("stdole2.tlb");
[
uuid(F7810043-11A7-11D4-BC3A-0010B5012266),
helpstring("BIG5 Class")
]
coclass BIG5
{
[default] interface IBIG5;
};
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?