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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // ExEquation.idl : IDL source for ExEquation.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ExEquation.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. typedef struct Root
  8. {
  9. float r1;
  10. float r2;
  11. }Root;
  12. typedef struct Equation
  13. {
  14. int a;
  15. int b;
  16. int c;
  17. }Equation;
  18. [
  19. object,
  20. uuid(DFE2965A-2A7E-4216-91C4-F3877B81FE72),
  21. dual,
  22. helpstring("IMyEquation Interface"),
  23. pointer_default(unique)
  24. ]
  25. interface IMyEquation : IDispatch
  26. {
  27. [id(1),helpstring("asdf")] HRESULT solve([in] Equation* equ,[out] Root** roots);
  28. };
  29. [
  30. uuid(CB653878-EF99-4CC4-8138-8E2ECFE405E8),
  31. version(1.0),
  32. helpstring("ExEquation 1.0 Type Library")
  33. ]
  34. library EXEQUATIONLib
  35. {
  36. importlib("stdole32.tlb");
  37. importlib("stdole2.tlb");
  38. [
  39. uuid(577B4F62-F3E4-4122-8BC6-50AA7D64DAA0),
  40. helpstring("MyEquation Class")
  41. ]
  42. coclass MyEquation
  43. {
  44. [default] interface IMyEquation;
  45. };
  46. };