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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // myaddinter.idl : IDL source for myaddinter.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (myaddinter.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(B5DC4864-4819-4C1F-9BBE-07CE523C5B42),
  10. helpstring("IMyfirst Interface"),
  11. pointer_default(unique)
  12. ]
  13. interface IMyfirst : IUnknown
  14. {
  15. [helpstring("method add")] HRESULT add([in] int a, [in] int b, [out] int* c);
  16. [helpstring("method asdf")] HRESULT sub([in] int a, [in] int b, [out] int* c);
  17. };
  18.                  [
  19.                      object,
  20.                      uuid(674F7BAF-A5B0-4b8d-871C-1C0A6A085DC3),
  21.                      helpstring("daffsdf")
  22.                  ]
  23.                  interface IHello:IUnknown
  24.                  {
  25.                                [helpstring("asdf")] HRESULT  MyHello([in] BSTR name, [out] BSTR* strResult);
  26.                  };
  27. [
  28. uuid(99CA5891-02B2-4439-B199-D6E1801242E3),
  29. version(1.0),
  30. helpstring("myaddinter 1.0 Type Library")
  31. ]
  32. library MYADDINTERLib
  33. {
  34. importlib("stdole32.tlb");
  35. importlib("stdole2.tlb");
  36. [
  37. uuid(5DBA4E48-6A44-4455-816C-A91491CAF625),
  38. helpstring("Myfirst Class")
  39. ]
  40. coclass Myfirst
  41. {
  42. [default] interface IMyfirst;
  43.                                                  interface IHello;
  44. };
  45. };