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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // ComCallBack.idl : IDL source for ComCallBack.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ComCallBack.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(4DDEB7DA-1ED9-493C-ABF4-BB9E152BC4A7),
  10. helpstring("IMyAbc Interface")
  11. ]
  12. interface ILogs
  13. {
  14. [helpstring("string")] HRESULT WriteLog([in] BSTR message);
  15. };
  16. [
  17. object,
  18. uuid(4DDEB7DA-1ED9-493C-ABF4-BB9E152BC4A6),
  19. dual,
  20. helpstring("IMyAbc Interface"),
  21. pointer_default(unique)
  22. ]
  23. interface IMyAbc : IDispatch
  24. {
  25.    [id(1),helpstring("ddd")] HRESULT SetLog([in] ILogs* ptools);//依赖注入方法;
  26.    [id(2),helpstring("ddd")] HRESULT add([in] int a, [in] int b,[out] int* c);
  27. };
  28. [
  29. uuid(3C91F4CC-20EF-44DC-B916-83E194089FBF),
  30. version(1.0),
  31. helpstring("ComCallBack 1.0 Type Library")
  32. ]
  33. library COMCALLBACKLib
  34. {
  35. importlib("stdole32.tlb");
  36. importlib("stdole2.tlb");
  37. [
  38. uuid(343819AB-6A1C-43DA-92AE-2D2C890FD625),
  39. helpstring("MyAbc Class")
  40. ]
  41. coclass MyAbc
  42. {
  43. [default] interface IMyAbc;
  44. };
  45. };