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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // EventDemo.idl : IDL source for EventDemo.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (EventDemo.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(691B531E-AF78-4B2E-851C-FEE7196E8853),
  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] int* c );
  17. };
  18. [
  19. uuid(C26E3137-7CDB-48F9-ACCB-95A272C68E67),
  20. version(1.0),
  21. helpstring("EventDemo 1.0 Type Library")
  22. ]
  23. library EVENTDEMOLib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27.     [
  28. uuid(C26E3137-7CDB-48F9-ACCB-95A272C68E68),
  29. helpstring("adfasdf")
  30. ]
  31. dispinterface _MyEvent //interface MyEvent: IDispatch
  32. {
  33. properties:
  34.     methods:
  35. [id(1),helpstring("adsf")] HRESULT OnLog([in] BSTR msg);
  36. }
  37. [
  38. uuid(1DB8D7EC-3D9E-4FA6-AE97-5295EA278F2A),
  39. helpstring("MyAbc Class")
  40. ]
  41. coclass MyAbc
  42. {
  43. [default] interface IMyAbc;
  44. [default,source] dispinterface _MyEvent;
  45. };
  46. };