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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // SmartPtrDemo.idl : IDL source for SmartPtrDemo.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (SmartPtrDemo.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(DA631CA4-7924-44A7-90F3-23B6C0F4004F),
  10. dual,
  11. helpstring("IMyAbc Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IMyAbc : IDispatch
  15. {
  16. [id(1), helpstring("method Hello")] HRESULT Hello([in] BSTR name, [out] BSTR* bstrResult);
  17. };
  18. [
  19. uuid(AC4FF44A-3154-4CE9-8022-394A018C2A60),
  20. version(1.0),
  21. helpstring("SmartPtrDemo 1.0 Type Library")
  22. ]
  23. library SMARTPTRDEMOLib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(F1FC69A8-2470-4744-A8BA-705DE4707D09),
  29. helpstring("MyAbc Class")
  30. ]
  31. coclass MyAbc
  32. {
  33. [default] interface IMyAbc;
  34. };
  35. };