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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // MyAbc.idl : IDL source for MyAbc.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (MyAbc.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(06585D57-FD99-4D38-9669-CB6232020A40),
  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, [out] int* c);
  17. };
  18. [
  19. uuid(A10B1048-F6DC-43F8-B572-033C12E45600),
  20. version(1.0),
  21. helpstring("MyAbc 1.0 Type Library")
  22. ]
  23. library MYABCLib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(9E09D602-72BA-4D65-B0D3-1C68A77B63CC),
  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(A8652099-D95C-4D23-A75C-FA00F0BF8703),
  39. helpstring("Abc Class")
  40. ]
  41. coclass Abc
  42. {
  43. [default] interface IAbc;
  44. [default, source] dispinterface _IAbcEvents;
  45. };
  46. };