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) ]
  4. interface ISum : IUnknown
  5. {
  6. typedef struct MYTYPE
  7. {
  8. short a;
  9. long b;
  10. } MYTYPE;
  11. HRESULT Sum([in] long cMax, [in, size_is(cMax)] MYTYPE* myarray);
  12. }
  13. [ uuid(10000003-0000-0000-0000-000000000001),
  14.   helpstring("Inside COM+ Component"),
  15.   version(1.0) ]
  16. library Component
  17. {
  18. importlib("stdole32.tlb");
  19. interface ISum;
  20. [ uuid(10000002-0000-0000-0000-000000000001) ]
  21. coclass InsideCOM
  22. {
  23. interface ISum;
  24. }
  25. };