Leaked source code of windows server 2003
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.

37 lines
1.4 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: pwd_str.h
  4. //
  5. // Module: Common Strings for all Modules to Utilize
  6. //
  7. // Synopsis: Header file for CMS flags used in password management
  8. // Note that the contents of this header should be
  9. // limited to password related CMS/CMP flags that are shared by
  10. // the modules that include this file.
  11. //
  12. // Copyright (c) 1998 Microsoft Corporation
  13. //
  14. // Author: nickball Created 10/09/98
  15. //
  16. //+----------------------------------------------------------------------------
  17. #ifndef _CM_PWD_STR
  18. #define _CM_PWD_STR
  19. const TCHAR* const c_pszCmEntryRememberPwd = TEXT("RememberPassword");
  20. const TCHAR* const c_pszCmEntryRememberInetPwd = TEXT("RememberInternetPassword");
  21. const TCHAR* const c_pszCmEntryPcs = TEXT("PCS");
  22. const TCHAR* const c_pszCmEntryPassword = TEXT("Password");
  23. const TCHAR* const c_pszCmEntryInetPassword = TEXT("InternetPassword");
  24. const TCHAR* const c_pszRegCmEncryptOption = TEXT("EncryptOption");
  25. const TCHAR* const c_pszCmEntryUseSameUserName = TEXT("UseSameUserName");
  26. //
  27. // Password token. Used for comparison in order not to re-save the password
  28. //
  29. const TCHAR* const c_pszSavedPasswordToken = TEXT("****************");
  30. #endif // _CM_PWD_STR