?? component.idl
字號:
// component.idl
import "unknwn.idl";
[ object, uuid(10000001-0000-0000-0000-000000000001), dual ]
interface ISum : IUnknown
{
[id(1)] HRESULT Sum([optional, defaultvalue(-1)] int x, [optional, defaultvalue(-1)] int y, [out, retval] int* retvalue);
[id(2), propget] HRESULT x([out, retval] int* retvalue);
[id(2), propput] HRESULT x(int newvalue);
[id(3), propget] HRESULT y([out, retval] int* retvalue);
[id(3), propput] HRESULT y(int newvalue);
}
[ uuid(10000003-0000-0000-0000-000000000001),
helpstring("Inside COM+ Component Type Library"),
version(1.0) ]
library Component
{
importlib("stdole32.tlb");
interface ISum;
[ uuid(10000002-0000-0000-0000-000000000001) ]
coclass InsideCOM
{
interface ISum;
};
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -