- rewrite kernel32:{Set|Get}PriorityClass on top of ntdll equivalent
- priority for process in wineserver is now the NTDLL form (no longer
  the kernel32 one)

diff --git a/server/process.c b/server/process.c
index a1d03d3..8453f18 100644
--- a/server/process.c
+++ b/server/process.c
@@ -37,8 +37,7 @@
 #include <poll.h>
 #endif
 
-#include "windef.h"
-#include "winnt.h"
+#include "winternl.h"
 
 #include "file.h"
 #include "handle.h"
@@ -233,7 +232,7 @@
     process->msg_fd          = NULL;
     process->exit_code       = STILL_ACTIVE;
     process->running_threads = 0;
-    process->priority        = NORMAL_PRIORITY_CLASS;
+    process->priority        = PROCESS_PRIOCLASS_NORMAL;
     process->affinity        = 1;
     process->suspend         = 0;
     process->create_flags    = 0;