mirror of https://github.com/tongzx/nt5src
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.
31 lines
533 B
31 lines
533 B
// Copyright (c) 2000 Microsoft Corporation
|
|
//
|
|
// Wrappers of wincrui.h APIs
|
|
//
|
|
// 19 July 2000 sburns
|
|
|
|
|
|
|
|
#ifndef CREDENTIALUIHELPERS_HPP_INCLUDED
|
|
#define CREDENTIALUIHELPERS_HPP_INCLUDED
|
|
|
|
|
|
|
|
namespace CredUi
|
|
{
|
|
String
|
|
GetUsername(HWND credControl);
|
|
|
|
HRESULT
|
|
SetUsername(HWND credControl, const String& username);
|
|
|
|
EncodedString
|
|
GetPassword(HWND credControl);
|
|
|
|
HRESULT
|
|
SetPassword(HWND credControl, const EncodedString& password);
|
|
} // namespace CredUi
|
|
|
|
|
|
|
|
#endif // #ifndef CREDENTIALUIHELPERS_HPP_INCLUDED
|