diff --git a/dlls/ntdll/sec.c b/dlls/ntdll/sec.c index 02fc77dc1cc..464104d6de8 100644 --- a/dlls/ntdll/sec.c +++ b/dlls/ntdll/sec.c @@ -43,8 +43,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(ntdll); -#define NT_SUCCESS(status) (status == STATUS_SUCCESS) - #define SELF_RELATIVE_FIELD(sd,field) ((BYTE *)(sd) + ((SECURITY_DESCRIPTOR_RELATIVE *)(sd))->field) /* helper function to retrieve active length of an ACL */ @@ -1521,7 +1519,7 @@ RtlAdjustPrivilege(ULONG Privilege, &TokenHandle); } - if (!NT_SUCCESS(Status)) + if (Status) { WARN("Retrieving token handle failed (Status %x)\n", Status); return Status; @@ -1546,7 +1544,7 @@ RtlAdjustPrivilege(ULONG Privilege, TRACE("Failed to assign all privileges\n"); return STATUS_PRIVILEGE_NOT_HELD; } - if (!NT_SUCCESS(Status)) + if (Status) { WARN("NtAdjustPrivilegesToken() failed (Status %x)\n", Status); return Status; diff --git a/include/ntdef.h b/include/ntdef.h index 83ecffd608e..014102ac74e 100644 --- a/include/ntdef.h +++ b/include/ntdef.h @@ -43,4 +43,9 @@ typedef enum _WAIT_TYPE { } #endif +#define NT_SUCCESS(status) (((NTSTATUS)(status)) >= 0) +#define NT_INFORMATION(status) ((((NTSTATUS)(status)) & 0xc0000000) == 0x40000000) +#define NT_WARNING(status) ((((NTSTATUS)(status)) & 0xc0000000) == 0x80000000) +#define NT_ERROR(status) ((((NTSTATUS)(status)) & 0xc0000000) == 0xc0000000) + #endif /* _NTDEF_ */