1 2 #pragma once 3 4 /* PSDK/NDK Headers */ 5 #define WIN32_NO_STATUS 6 #include <windef.h> 7 #include <winbase.h> 8 9 /* Redefine NTDDI_VERSION to 2K3 SP1 to get correct NDK definitions */ 10 #undef NTDDI_VERSION 11 #define NTDDI_VERSION NTDDI_WS03SP1 12 13 #define NTOS_MODE_USER 14 #include <ndk/iofuncs.h> 15 #include <ndk/kefuncs.h> 16 #include <ndk/obfuncs.h> 17 #include <ndk/psfuncs.h> 18 #include <ndk/rtlfuncs.h> 19 20 /* CSRSS Headers */ 21 #include <win/base.h> 22 23 /* Internal Kernel32 Header */ 24 #include "../include/kernel32.h" 25