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.

47 lines
1.4 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: userinfo.h
  4. //
  5. // Module: CMCFG32.DLL and CMDIAL32.DLL
  6. //
  7. // Synopsis: UserInfo constants
  8. //
  9. // Copyright (c) 1996-1998 Microsoft Corporation
  10. //
  11. // Author: quintinb/nickball Created 08/06/98
  12. //
  13. //+----------------------------------------------------------------------------
  14. #ifndef _CM_USERINFO_H_
  15. #define _CM_USERINFO_H_
  16. ///////////////////////////////////////////////////////////////////////////////////
  17. // define's
  18. ///////////////////////////////////////////////////////////////////////////////////
  19. // UserInfo Identifiers
  20. #define UD_ID_USERNAME 0x00000001
  21. #define UD_ID_INET_USERNAME 0x00000002
  22. #define UD_ID_DOMAIN 0x00000004
  23. #define UD_ID_PASSWORD 0x00000008
  24. #define UD_ID_INET_PASSWORD 0x00000010
  25. #define UD_ID_NOPROMPT 0x00000020
  26. #define UD_ID_REMEMBER_PWD 0x00000040
  27. #define UD_ID_REMEMBER_INET_PASSWORD 0x00000080
  28. #define UD_ID_PCS 0x00000100
  29. #define UD_ID_ACCESSPOINTENABLED 0x00000200
  30. #define UD_ID_CURRENTACCESSPOINT 0x00000400
  31. //
  32. // Tells CM what kind of upgrade is needed. See NeedToUpgradeUserInfo and
  33. // UpgradeUserInfo below for more details
  34. //
  35. const int c_iNoUpgradeRequired = 0;
  36. const int c_iUpgradeFromCmp = 1;
  37. const int c_iUpgradeFromRegToRas = 2;
  38. #endif // _CM_USERINFO_H_