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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // ex.idl : IDL source for ex.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ex.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. #include "olectl.h"
  8. [
  9. object,
  10. uuid(725C2224-FB8D-4134-BB95-0EC714D3F926),
  11. dual,
  12. helpstring("IMyabc Interface"),
  13. pointer_default(unique)
  14. ]
  15. interface IMyabc : IDispatch
  16. {
  17. };
  18. [
  19. uuid(7338A9B9-8956-429F-B1DB-00503C718648),
  20. version(1.0),
  21. helpstring("ex 1.0 Type Library")
  22. ]
  23. library EXLib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(3C1429A0-E218-4818-A2B4-8738C1887D98),
  29. helpstring("_IMyabcEvents Interface")
  30. ]
  31. dispinterface _IMyabcEvents
  32. {
  33. properties:
  34. methods:
  35. [id(1), helpstring("method add")] HRESULT add([in] BSTR msg);
  36. };
  37. [
  38. uuid(7E4AFFC3-05CD-4CE7-832B-68AEA5173A4B),
  39. helpstring("Myabc Class")
  40. ]
  41. coclass Myabc
  42. {
  43. [default] interface IMyabc;
  44. [default, source] dispinterface _IMyabcEvents;
  45. };
  46. };