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.

39 lines
1.6 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: userinfo_str.h
  4. //
  5. // Module: Common Strings for all Modules to Utilize
  6. //
  7. // Synopsis: Reg keys for user info
  8. //
  9. // Copyright (c) 1998 Microsoft Corporation
  10. //
  11. // Author: quintinb Created Header 08/19/99
  12. //
  13. //+----------------------------------------------------------------------------
  14. const TCHAR* const c_pszRegCmUserInfo = TEXT("SOFTWARE\\Microsoft\\Connection Manager\\UserInfo\\");
  15. const TCHAR* const c_pszRegCmSingleUserInfo = TEXT("SOFTWARE\\Microsoft\\Connection Manager\\SingleUserInfo\\");
  16. const TCHAR* const c_pszCmEntryUserName = TEXT("UserName");
  17. const TCHAR* const c_pszCmEntryInetUserName = TEXT("InternetUserName");
  18. const TCHAR* const c_pszCmEntryDomain = TEXT("Domain");
  19. const TCHAR* const c_pszCmEntryNoPrompt = TEXT("DialAutomatically");
  20. const TCHAR* const c_pszCmEntryCurrentAccessPoint = TEXT("CurrentAccessPoint");
  21. const TCHAR* const c_pszCmEntryAccessPointsEnabled = TEXT("AccessPointsEnabled");
  22. const TCHAR* const c_pszCmEntryBalloonTipsDisplayed = TEXT("BalloonTipsDisplayed");
  23. //
  24. // Used to store the encrypted random key for password encryption and decryption
  25. // UserBlob - main password, UserBlob2 - Internet password
  26. //
  27. const TCHAR* const c_pszCmRegKeyEncryptedPasswordKey = TEXT("UserBlob");
  28. const TCHAR* const c_pszCmRegKeyEncryptedInternetPasswordKey = TEXT("UserBlob2");
  29. //
  30. // Reg key used to store ICS user setting
  31. //
  32. const TCHAR* const c_pszCmRegKeyICSDataKey = TEXT("ICSData");