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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // ExEvent.idl : IDL source for ExEvent.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ExEvent.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. #include "olectl.h"
  8. [
  9. object,
  10. uuid(5D8918B7-6EE3-4D02-AC6E-BA7398FC872C),
  11. dual,
  12. helpstring("IMyAbcd Interface"),
  13. pointer_default(unique)
  14. ]
  15. interface IMyAbcd : IDispatch
  16. {
  17. };
  18. [
  19. uuid(2C5DC97C-87FC-455B-B5B6-4CE42A3CC212),
  20. version(1.0),
  21. helpstring("ExEvent 1.0 Type Library")
  22. ]
  23. library EXEVENTLib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(588E4844-9AB3-4B8B-BE17-67383E1DBAB8),
  29. helpstring("_IMyAbcdEvents Interface")
  30. ]
  31. dispinterface _IMyAbcdEvents
  32. {
  33. properties:
  34. methods:
  35. [id(1), helpstring("method show")] HRESULT show([in] int msg);
  36. };
  37. [
  38. uuid(20553217-5B7B-498F-A844-DA618F50C15D),
  39. helpstring("MyAbcd Class")
  40. ]
  41. coclass MyAbcd
  42. {
  43. [default] interface IMyAbcd;
  44. [default, source] dispinterface _IMyAbcdEvents;
  45. };
  46. };