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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // DemoIUnknown.idl : IDL source for DemoIUnknown.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (DemoIUnknown.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(BA4816E3-7295-4189-B7B5-274676745821),
  10. helpstring("IMyAbc Interface"),
  11. pointer_default(unique)
  12. ]
  13. interface ILog : IUnknown
  14. {
  15. [helpstring("asdfdasf")] HRESULT writeLog([in] BSTR message);
  16. };
  17. [
  18. object,
  19. uuid(BA4816E3-7295-4189-B7B5-274676745820),
  20. dual,
  21. helpstring("IMyAbc Interface"),
  22. pointer_default(unique)
  23. ]
  24. interface IMyAbc : IDispatch
  25. {     
  26. [id(1), helpstring("method SetLog")] HRESULT SetLog([in] IUnknown* pTools);
  27. [id(2), helpstring("method add")] HRESULT add([in] int a, [in] int b, [out] int* c);
  28. };
  29. [
  30. uuid(212D7586-B43B-4F55-A543-507A3FFED444),
  31. version(1.0),
  32. helpstring("DemoIUnknown 1.0 Type Library")
  33. ]
  34. library DEMOIUNKNOWNLib
  35. {
  36. importlib("stdole32.tlb");
  37. importlib("stdole2.tlb");
  38. [
  39. uuid(84447EF1-7792-4B4A-8861-6EDBF7BC4AC3),
  40. helpstring("MyAbc Class")
  41. ]
  42. coclass MyAbc
  43. {
  44. [default] interface IMyAbc;
  45. };
  46. };