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.
|
|
//+-----------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (c) Microsoft Corporation 2001
//
// File: userall.h
//
// Contents: Flags for prefetching for SAM information
//
//
// History: 23-March-2001 Created MarkPu
//
//------------------------------------------------------------------------
#ifndef __USERALL_H
#define __USERALL_H
const ULONG USER_ALL_PAC_BUILD_CREDENTIALS = USER_ALL_LMPASSWORDPRESENT | USER_ALL_OWFPASSWORD | USER_ALL_NTPASSWORDPRESENT;
const ULONG USER_ALL_KDC_GET_USER_KEYS = USER_ALL_LMPASSWORDPRESENT | USER_ALL_OWFPASSWORD | USER_ALL_NTPASSWORDPRESENT | USER_ALL_PRIVATEDATA | USER_ALL_USERACCOUNTCONTROL | USER_ALL_USERID | USER_ALL_USERNAME;
const ULONG USER_ALL_KDC_BUILD_SUPPLEMENTAL_CREDENTIALS = USER_ALL_PAC_BUILD_CREDENTIALS;
const ULONG USER_ALL_PAC_MARSHALL_VALIDATION_INFO = USER_ALL_ACCOUNTEXPIRES | USER_ALL_BADPASSWORDCOUNT | USER_ALL_FULLNAME | USER_ALL_HOMEDIRECTORY | USER_ALL_HOMEDIRECTORYDRIVE | USER_ALL_LASTLOGON | USER_ALL_LOGONCOUNT | USER_ALL_PARAMETERS | USER_ALL_PASSWORDCANCHANGE | USER_ALL_PASSWORDLASTSET | USER_ALL_PASSWORDMUSTCHANGE | USER_ALL_PRIMARYGROUPID | USER_ALL_PROFILEPATH | USER_ALL_SCRIPTPATH | USER_ALL_USERACCOUNTCONTROL | USER_ALL_USERID | USER_ALL_USERNAME;
const ULONG USER_ALL_PAC_INIT = USER_ALL_PAC_MARSHALL_VALIDATION_INFO;
const ULONG USER_ALL_GET_PAC_AND_SUPP_CRED = USER_ALL_KDC_BUILD_SUPPLEMENTAL_CREDENTIALS | USER_ALL_PAC_INIT;
const ULONG USER_ALL_KDC_GET_PAC_AUTH_DATA = USER_ALL_GET_PAC_AND_SUPP_CRED;
const ULONG USER_ALL_KERB_CHECK_LOGON_RESTRICTIONS = USER_ALL_ACCOUNTEXPIRES | USER_ALL_LOGONHOURS | USER_ALL_PASSWORDMUSTCHANGE | USER_ALL_USERACCOUNTCONTROL | USER_ALL_USERID | USER_ALL_WORKSTATIONS;
const ULONG USER_ALL_KDC_CHECK_PREAUTH_DATA = USER_ALL_USERACCOUNTCONTROL;
const ULONG USER_ALL_SUCCESSFUL_LOGON = USER_ALL_BADPASSWORDCOUNT;
#endif // __USERALL_H
|