From 735a51046f7d25485147e50cbec0e8daa0122353 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 7 Sep 2006 19:59:35 +0200 Subject: [PATCH] include: Document some Microsoft spelling mistakes so we know they are not to be fixed. --- include/ntstatus.h | 1 + include/sddl.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/include/ntstatus.h b/include/ntstatus.h index 97527a06a91..8d2ceae5db3 100644 --- a/include/ntstatus.h +++ b/include/ntstatus.h @@ -861,6 +861,7 @@ #define STATUS_WAIT_FOR_OPLOCK ((NTSTATUS) 0x00000367) #define STATUS_MOUNT_POINT_NOT_RESOLVED ((NTSTATUS) 0xC0000368) #define STATUS_INVALID_DEVICE_OBJECT_PARAMETER ((NTSTATUS) 0xC0000369) +/* STATUS_MCA_OCCURED is not a typo, as per Microsoft's headers */ #define STATUS_MCA_OCCURED ((NTSTATUS) 0xC000036A) #define STATUS_DRIVER_BLOCKED_CRITICAL ((NTSTATUS) 0xC000036B) #define STATUS_DRIVER_BLOCKED ((NTSTATUS) 0xC000036C) diff --git a/include/sddl.h b/include/sddl.h index 3218323324f..5c586a3c483 100644 --- a/include/sddl.h +++ b/include/sddl.h @@ -41,6 +41,7 @@ extern "C" { /* * SDDL Separators - character version */ +/* SDDL_SEPERATORC is not a typo, as per Microsoft's headers */ #define SDDL_SEPERATORC TEXT(";") #define SDDL_DELIMINATORC TEXT(":") #define SDDL_ACE_BEGINC TEXT("(") @@ -49,6 +50,7 @@ extern "C" { /* * SDDL Separators - string version */ +/* SDDL_SEPERATOR is not a typo, as per Microsoft's headers */ #define SDDL_SEPERATOR TEXT(";") #define SDDL_DELIMINATOR TEXT(":") #define SDDL_ACE_BEGIN TEXT("(")