https://git.reactos.org/?p=reactos.git;a=commitdiff;h=9021a14f4af8eff8cf990a2812876505a10c0887

commit 9021a14f4af8eff8cf990a2812876505a10c0887
Author:     Hermès Bélusca-Maïto <hermes.belusca-ma...@reactos.org>
AuthorDate: Sat Oct 7 22:11:39 2023 +0200
Commit:     Hermès Bélusca-Maïto <hermes.belusca-ma...@reactos.org>
CommitDate: Sun Oct 8 17:11:25 2023 +0200

    [NDK] Fix weird "ntstatus.s" statement (#5771)
    
    Spotted by Serge Gautherie.
---
 sdk/include/ndk/readme.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sdk/include/ndk/readme.txt b/sdk/include/ndk/readme.txt
index 0b67c2dd0bc..b9fe54b90d7 100644
--- a/sdk/include/ndk/readme.txt
+++ b/sdk/include/ndk/readme.txt
@@ -172,7 +172,7 @@ remain anonymous, simply do not include this statement.
 
     *  User Mode Application requiring Native Types: 
 
-       #define WIN32_NO_STATUS   /* Tell Windows headers you'll use ntstatus.s 
from NDK */
+       #define WIN32_NO_STATUS   /* Tell Windows headers you'll use ntstatus.h 
from PSDK */
        #include "windows.h"      /* Declare Windows Headers like you normally 
would */
        #include "ntndk.h"        /* Declare the NDK Headers */
 
@@ -188,7 +188,7 @@ remain anonymous, simply do not include this statement.
 
     * You may also include only the files you need (example for User-Mode 
application):
 
-       #define WIN32_NO_STATUS   /* Tell Windows headers you'll use ntstatus.s 
from NDK */
+       #define WIN32_NO_STATUS   /* Tell Windows headers you'll use ntstatus.h 
from PSDK */
        #include "windows.h"      /* Declare Windows Headers like you normally 
would */
        #include "rtlfuncs.h"     /* Declare the Rtl* Functions */
 

Reply via email to