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.

79 lines
2.1 KiB

  1. //+-----------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) Microsoft Corporation 2001
  6. //
  7. // File: userall.h
  8. //
  9. // Contents: Flags for prefetching for SAM information
  10. //
  11. //
  12. // History: 23-March-2001 Created MarkPu
  13. //
  14. //------------------------------------------------------------------------
  15. #ifndef __USERALL_H
  16. #define __USERALL_H
  17. const ULONG USER_ALL_PAC_BUILD_CREDENTIALS =
  18. USER_ALL_LMPASSWORDPRESENT |
  19. USER_ALL_OWFPASSWORD |
  20. USER_ALL_NTPASSWORDPRESENT;
  21. const ULONG USER_ALL_KDC_GET_USER_KEYS =
  22. USER_ALL_LMPASSWORDPRESENT |
  23. USER_ALL_OWFPASSWORD |
  24. USER_ALL_NTPASSWORDPRESENT |
  25. USER_ALL_PRIVATEDATA |
  26. USER_ALL_USERACCOUNTCONTROL |
  27. USER_ALL_USERID |
  28. USER_ALL_USERNAME;
  29. const ULONG USER_ALL_KDC_BUILD_SUPPLEMENTAL_CREDENTIALS =
  30. USER_ALL_PAC_BUILD_CREDENTIALS;
  31. const ULONG USER_ALL_PAC_MARSHALL_VALIDATION_INFO =
  32. USER_ALL_ACCOUNTEXPIRES |
  33. USER_ALL_BADPASSWORDCOUNT |
  34. USER_ALL_FULLNAME |
  35. USER_ALL_HOMEDIRECTORY |
  36. USER_ALL_HOMEDIRECTORYDRIVE |
  37. USER_ALL_LASTLOGON |
  38. USER_ALL_LOGONCOUNT |
  39. USER_ALL_PARAMETERS |
  40. USER_ALL_PASSWORDCANCHANGE |
  41. USER_ALL_PASSWORDLASTSET |
  42. USER_ALL_PASSWORDMUSTCHANGE |
  43. USER_ALL_PRIMARYGROUPID |
  44. USER_ALL_PROFILEPATH |
  45. USER_ALL_SCRIPTPATH |
  46. USER_ALL_USERACCOUNTCONTROL |
  47. USER_ALL_USERID |
  48. USER_ALL_USERNAME;
  49. const ULONG USER_ALL_PAC_INIT =
  50. USER_ALL_PAC_MARSHALL_VALIDATION_INFO;
  51. const ULONG USER_ALL_GET_PAC_AND_SUPP_CRED =
  52. USER_ALL_KDC_BUILD_SUPPLEMENTAL_CREDENTIALS |
  53. USER_ALL_PAC_INIT;
  54. const ULONG USER_ALL_KDC_GET_PAC_AUTH_DATA =
  55. USER_ALL_GET_PAC_AND_SUPP_CRED;
  56. const ULONG USER_ALL_KERB_CHECK_LOGON_RESTRICTIONS =
  57. USER_ALL_ACCOUNTEXPIRES |
  58. USER_ALL_LOGONHOURS |
  59. USER_ALL_PASSWORDMUSTCHANGE |
  60. USER_ALL_USERACCOUNTCONTROL |
  61. USER_ALL_USERID |
  62. USER_ALL_WORKSTATIONS;
  63. const ULONG USER_ALL_KDC_CHECK_PREAUTH_DATA =
  64. USER_ALL_USERACCOUNTCONTROL;
  65. const ULONG USER_ALL_SUCCESSFUL_LOGON =
  66. USER_ALL_BADPASSWORDCOUNT;
  67. #endif // __USERALL_H