[VFDLIB] GitHub actions workaround - Disable PDB generation for vfd.dll (#6762)
[reactos.git] / win32ss / napi.h
index 5831932..0b4d538 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * FILE:            subsystems/win32/win32k/include/napi.h
+ * FILE:            win32ss/napi.h
  * COPYRIGHT:       GNU GPL, see COPYING in the top level directory
  * PURPOSE:         System Call Table for Native API
  * PROGRAMMER:      Timo Kreuzer
@@ -7,13 +7,21 @@
 
 #define SVC_(name, argcount) (ULONG_PTR)Nt##name,
 ULONG_PTR Win32kSSDT[] = {
-#include "w32ksvc.h"
+#ifdef _WIN64
+#include "w32ksvc64.h"
+#else
+#include "w32ksvc32.h"
+#endif
 };
 #undef SVC_
 
 #define SVC_(name, argcount) argcount * sizeof(void *),
 UCHAR Win32kSSPT[] = {
-#include "w32ksvc.h"
+#ifdef _WIN64
+#include "w32ksvc64.h"
+#else
+#include "w32ksvc32.h"
+#endif
 };
 
 #define MIN_SYSCALL_NUMBER    0x1000