Skip to content

Commit

Permalink
[NDK] Fix weird "ntstatus.s" statement.
Browse files Browse the repository at this point in the history
Spotted by Serge Gautherie.
  • Loading branch information
HBelusca committed Oct 7, 2023
1 parent d0b43a3 commit 1f577a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/include/ndk/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

Expand All @@ -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 */

Expand Down

0 comments on commit 1f577a2

Please sign in to comment.