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

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // DemoBstr.idl : IDL source for DemoBstr.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (DemoBstr.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(91291360-85F9-4F49-9CD9-90D4701B7B62),
  10. dual,
  11. helpstring("IMyBstr Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IMyBstr : IDispatch
  15. {
  16. [id(1), helpstring("method Authen")] HRESULT Authen([in] BSTR name, [in] BSTR pwd, [out] BSTR* Result);
  17. };
  18. [
  19. uuid(7F02A772-00F4-4E58-8F8F-6505DAAED6F8),
  20. version(1.0),
  21. helpstring("DemoBstr 1.0 Type Library")
  22. ]
  23. library DEMOBSTRLib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(036E0C49-A275-4C57-B985-93F4E329F5CA),
  29. helpstring("MyBstr Class")
  30. ]
  31. coclass MyBstr
  32. {
  33. [default] interface IMyBstr;
  34. };
  35. };