Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
810 B

  1. // ScriptPW.idl : IDL source for ScriptPW.dll
  2. //
  3. // This file will be processed by the MIDL tool to
  4. // produce the type library (ScriptPW.tlb) and marshalling code.
  5. import "oaidl.idl";
  6. import "ocidl.idl";
  7. [
  8. object,
  9. uuid(3D3664FB-A3FB-41F3-9D54-7F99D2FF152F),
  10. dual,
  11. helpstring("IPassword Interface"),
  12. pointer_default(unique)
  13. ]
  14. interface IPassword : IDispatch
  15. {
  16. [id(1), helpstring("method GetPassword")] HRESULT GetPassword([out, retval] BSTR *bstrOutPassword);
  17. };
  18. [
  19. uuid(6E3EC78A-6CE7-4298-815B-21BEF4967112),
  20. version(1.0),
  21. helpstring("ScriptPW 1.0 Type Library")
  22. ]
  23. library SCRIPTPWLib
  24. {
  25. importlib("stdole32.tlb");
  26. importlib("stdole2.tlb");
  27. [
  28. uuid(834C5A62-E0BB-4FB4-87B9-F37C869C976B),
  29. helpstring("Password Class")
  30. ]
  31. coclass Password
  32. {
  33. [default] interface IPassword;
  34. };
  35. };