component.idl
上传用户:bjlvip
上传日期:2010-02-08
资源大小:744k
文件大小:1k
- import "unknwn.idl";
- [
- object,
- uuid(02753f20-716c-11d1-a6fc-0000c0cc7be1),
- dual,
- pointer_default(unique),
- helpstring("ISum Interface")
- ]
- interface ISum : IDispatch
- {
- [ helpstring("Sum Method") ]
- HRESULT Sum([in] long x, [in] long y, [out, retval] long * rtn);
- }
- [
- uuid(02753f21-716c-11d1-a6fc-0000c0cc7be1),
- helpstring("Inside COM+ Type Library"),
- version(1.0)
- ]
- library InsideCOMLib
- {
- importlib("stdole32.tlb");
- interface ISum;
- [
- uuid(5ffe7e00-5db6-11d1-a6fc-0000c0cc7be1),
- helpstring("Inside COM+ CoClass")
- ]
- coclass InsideCOM
- {
- interface ISum;
- };
- };