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.

30 lines
533 B

  1. // Copyright (c) 2000 Microsoft Corporation
  2. //
  3. // Wrappers of wincrui.h APIs
  4. //
  5. // 19 July 2000 sburns
  6. #ifndef CREDENTIALUIHELPERS_HPP_INCLUDED
  7. #define CREDENTIALUIHELPERS_HPP_INCLUDED
  8. namespace CredUi
  9. {
  10. String
  11. GetUsername(HWND credControl);
  12. HRESULT
  13. SetUsername(HWND credControl, const String& username);
  14. EncodedString
  15. GetPassword(HWND credControl);
  16. HRESULT
  17. SetPassword(HWND credControl, const EncodedString& password);
  18. } // namespace CredUi
  19. #endif // #ifndef CREDENTIALUIHELPERS_HPP_INCLUDED