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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // EquationDemo.idl : IDL source for EquationDemo.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (EquationDemo.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.     float a;
  15. float b;
  16. float c;
  17. } Equation;
  18. [
  19. object,
  20. uuid(A9C49F53-8102-4629-BFF5-E1A8AC730000),
  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(C7F40858-3FE4-48DA-8D78-37D9F4733183),
  31. version(1.0),
  32. helpstring("EquationDemo 1.0 Type Library")
  33. ]
  34. library EQUATIONDEMOLib
  35. {
  36. importlib("stdole32.tlb");
  37. importlib("stdole2.tlb");
  38. [
  39. uuid(7A2F845C-D946-436E-9648-FA0B16852D40),
  40. helpstring("MyEquation Class")
  41. ]
  42. coclass MyEquation
  43. {
  44. [default] interface IMyEquation;
  45. };
  46. };