autoDemo.idl
上传用户:weisheen
上传日期:2022-07-09
资源大小:19390k
文件大小:1k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // autoDemo.idl : IDL source for autoDemo.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (autoDemo.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(773A8D98-71EF-4BFD-873E-930EE45A4B57),
  10. dual,
  11. helpstring("IMyAbc Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IMyAbc : IDispatch
  15. {
  16. [id(1), helpstring("method add")] HRESULT add([in] int a, [in] int b,[out,retval] int *c);
  17. };
  18. [
  19. uuid(B9B6894F-E818-4248-A2BB-F533D5CAFCB5),
  20. version(1.0),
  21. helpstring("autoDemo 1.0 Type Library")
  22. ]
  23. library AUTODEMOLib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(46C50D71-125C-4D5A-A6E7-DB49F5FED5F7),
  29. helpstring("MyAbc Class")
  30. ]
  31. coclass MyAbc
  32. {
  33. [default] interface IMyAbc;
  34. };
  35. };