Prepare win32k for tests
[reactos.git] / reactos / regtests / regtests / regtests.c
index 9fcc8d2..b904be1 100755 (executable)
@@ -86,3 +86,15 @@ _SetThreadPriority(HANDLE hThread, int nPriority)
 {
   return SetThreadPriority(hThread, nPriority);
 }
+
+HANDLE STDCALL
+_GetCurrentProcess()
+{
+  return GetCurrentProcess();
+}
+
+HANDLE STDCALL
+_GetCurrentThread()
+{
+  return GetCurrentThread();
+}