diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2000-10-09 09:51:46 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2000-10-09 09:51:46 +0000 |
commit | b9e7a2b6662bcfef28b6fafddfeb9ff1e00ac5f5 (patch) | |
tree | 3449497d663aa1ad6adf911fd258f25cd90972ba /winsup/w32api/include/ntsecapi.h | |
parent | 4b5970ab899c8a58d197b2b500157dbca3f2a1fc (diff) | |
download | cygnal-b9e7a2b6662bcfef28b6fafddfeb9ff1e00ac5f5.tar.gz cygnal-b9e7a2b6662bcfef28b6fafddfeb9ff1e00ac5f5.tar.bz2 cygnal-b9e7a2b6662bcfef28b6fafddfeb9ff1e00ac5f5.zip |
* include/iprtrmib.h: Further layout changes according to standard.
* include/iptypes.h: Ditto.
* include/ntdef.h: Ditto.
* include/ntsecapi.h: Ditto.
* include/subauth.h: Ditto.
Diffstat (limited to 'winsup/w32api/include/ntsecapi.h')
-rw-r--r-- | winsup/w32api/include/ntsecapi.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/w32api/include/ntsecapi.h b/winsup/w32api/include/ntsecapi.h index 07733a2b6..0531f47c8 100644 --- a/winsup/w32api/include/ntsecapi.h +++ b/winsup/w32api/include/ntsecapi.h @@ -18,7 +18,7 @@ extern "C" { #define LSA_MODE_INDIVIDUAL_ACCOUNTS 2 #define LSA_MODE_MANDATORY_ACCESS 3 #define LSA_MODE_LOG_FULL 4 -#define LSA_SUCCESS(Error) ((LONG)(Error) >= 0) +#define LSA_SUCCESS(x) ((LONG)(x)>=0) #define MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT 32 #define MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT 2048 #define MSV1_0_CHALLENGE_LENGTH 8 @@ -33,11 +33,11 @@ extern "C" { #define MSV1_0_MNS_LOGON 16777216 #define MSV1_0_NTLM3_RESPONSE_LENGTH 16 #define MSV1_0_NTLM3_OWF_LENGTH 16 -#define MSV1_0_NTLM3_INPUT_LENGTH (sizeof(MSV1_0_NTLM3_RESPONSE) - MSV1_0_NTLM3_RESPONSE_LENGTH) +#define MSV1_0_NTLM3_INPUT_LENGTH (sizeof(MSV1_0_NTLM3_RESPONSE)-MSV1_0_NTLM3_RESPONSE_LENGTH) #define MSV1_0_OWF_PASSWORD_LENGTH 16 #define MSV1_0_PACKAGE_NAME "MICROSOFT_AUTHENTICATION_PACKAGE_V1_0" #define MSV1_0_PACKAGE_NAMEW L"MICROSOFT_AUTHENTICATION_PACKAGE_V1_0" -#define MSV1_0_PACKAGE_NAMEW_LENGTH sizeof(MSV1_0_PACKAGE_NAMEW) - sizeof(WCHAR) +#define MSV1_0_PACKAGE_NAMEW_LENGTH sizeof(MSV1_0_PACKAGE_NAMEW)-sizeof(WCHAR) #define MSV1_0_RETURN_USER_PARAMETERS 8 #define MSV1_0_RETURN_PASSWORD_EXPIRY 64 #define MSV1_0_RETURN_PROFILE_PATH 512 |