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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // ExMyAbc.idl : IDL source for ExMyAbc.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ExMyAbc.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(CA026D75-A90F-4BF7-BD2A-9007774E2885),
  10. dual,
  11. helpstring("IAbc Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IAbc : IDispatch
  15. {
  16. [id(1), helpstring("method add")] HRESULT add([in] int a,[in] int b,[in] int*c);
  17. };
  18. [
  19. uuid(4B242CEE-0319-44C2-BE9B-8EB19D5D7C7F),
  20. version(1.0),
  21. helpstring("ExMyAbc 1.0 Type Library")
  22. ]
  23. library EXMYABCLib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(A4DC394B-48B6-4FDC-B484-C8B01F49B2E9),
  29. helpstring("_IAbcEvents Interface")
  30. ]
  31. dispinterface _IAbcEvents
  32. {
  33. properties:
  34. methods:
  35. [id(1), helpstring("method add")] HRESULT WriteLog([in] BSTR  msge);
  36. };
  37. [
  38. uuid(3AC3FEAA-A29E-415C-8863-2A10EFCEFD65),
  39. helpstring("Abc Class")
  40. ]
  41. coclass Abc
  42. {
  43. [default] interface IAbc;
  44. [default, source] dispinterface _IAbcEvents;
  45. };
  46. };