component.idl
上传用户:bjlvip
上传日期:2010-02-08
资源大小:744k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // component.idl
  2. import "unknwn.idl";
  3. [ object, uuid(10000001-0000-0000-0000-000000000001), dual ]
  4. interface ISum : IDispatch
  5. {
  6. [id(1)] HRESULT Sum([optional, defaultvalue(-1)] int x, [optional, defaultvalue(-1)] int y, [out, retval] int* retvalue);
  7. [id(2), propget] HRESULT x([out, retval] int* retvalue);
  8. [id(2), propput] HRESULT x(int newvalue);
  9. [id(3), propget] HRESULT y([out, retval] int* retvalue);
  10. [id(3), propput] HRESULT y(int newvalue);
  11. }
  12. [ uuid(10000003-0000-0000-0000-000000000001),
  13.   helpstring("Inside COM+ Component Type Library"),
  14.   version(1.0) ]
  15. library Component
  16. {
  17. importlib("stdole32.tlb");
  18.     interface ISum;
  19. [ uuid(10000002-0000-0000-0000-000000000001) ]
  20. coclass InsideCOM
  21. {
  22. interface ISum;
  23. };
  24. };