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. };
  17.     [  object,
  18.    uuid(7E4933F5-9F96-4D4C-ABF1-8C6E0B4C8EEA),
  19.    helpstring("asdf")
  20.  ]
  21. interface IHello:IUnknown
  22. {
  23. [helpstring("string")] HRESULT hello([in] BSTR name,[out] BSTR* result);
  24. };
  25. [
  26. uuid(E5739F31-7607-41F3-A60C-21A25ACA0A88),
  27. version(1.0),
  28. helpstring("IUnknownDemo 1.0 Type Library")
  29. ]
  30. library IUNKNOWNDEMOLib
  31. {
  32. importlib("stdole32.tlb");
  33. importlib("stdole2.tlb");
  34. [
  35. uuid(864CDFA4-2E80-48AF-B366-CC9228E364B9),
  36. helpstring("IMyObj Class")
  37. ]
  38. coclass IMyObj
  39. {
  40. [default] interface IIMyObj;
  41. };
  42. };