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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // exsmartp.idl : IDL source for exsmartp.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (exsmartp.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(C331A2FC-DC93-4778-8E9F-A5E52BB0EA5B),
  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(5CEED2D8-BA6F-43BE-8BDE-BB7B8601390D),
  20. version(1.0),
  21. helpstring("exsmartp 1.0 Type Library")
  22. ]
  23. library EXSMARTPLib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(72B2E2F4-6596-4F7C-A9B7-38C85C5EC2AF),
  29. helpstring("MyAbc Class")
  30. ]
  31. coclass MyAbc
  32. {
  33. [default] interface IMyAbc;
  34. };
  35. };