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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // IUnknownDemo.idl : IDL source for IUnknownDemo.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (IUnknownDemo.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(7E4933F5-9F96-4D4C-ABF1-8C6E0B4C8EE9),
  10. helpstring("IIMyObj Interface"),
  11. pointer_default(unique)
  12. ]
  13. interface IIMyObj : IUnknown
  14. {
  15.     [helpstring("asdf")]HRESULT add([in] int a, [in] int b, [out] int* c);
  16. [helpstring("method sub")] HRESULT sub([in] VARIANT a, [in] VARIANT b,[out ] VARIANT* c);
  17. };
  18.     [  object,
  19.    uuid(7E4933F5-9F96-4D4C-ABF1-8C6E0B4C8EEA),
  20.    helpstring("asdf")
  21.  ]
  22. interface IHello:IUnknown
  23. {
  24. [helpstring("string")] HRESULT hello([in] BSTR name,[out] BSTR* result);
  25. };
  26. [
  27. uuid(E5739F31-7607-41F3-A60C-21A25ACA0A88),
  28. version(1.0),
  29. helpstring("IUnknownDemo 1.0 Type Library")
  30. ]
  31. library IUNKNOWNDEMOLib
  32. {
  33. importlib("stdole32.tlb");
  34. importlib("stdole2.tlb");
  35. [
  36. uuid(864CDFA4-2E80-48AF-B366-CC9228E364B9),
  37. helpstring("IMyObj Class")
  38. ]
  39. coclass IMyObj
  40. {
  41. [default] interface IIMyObj;
  42.   interface IHello;
  43. };
  44. };