This commit was generated by cvs2svn to compensate for changes in r52,
[reactos.git] / reactos / lib / kernel32 / process / proc.c
index 5bc2a68..633e088 100644 (file)
@@ -1,3 +1,4 @@
+#include <windows.h>
 #include <process.h>
 /*
  * Win32 Process Api functions
 #define NT_CURRENT_THREAD      0xFFFFFFFE
 
 
-WINBASEAPI
-HANDLE
-WINAPI
-GetCurrentProcess()
+HANDLE STDCALL GetCurrentProcess(VOID)
 {
        return NT_CURRENT_PROCESS;
 }
 
-WINBASEAPI
-DWORD
-WINAPI
-GetCurrentProcessId()
+HANDLE STDCALL GetCurrentThread()
 {
-       return GetTeb()->dwProcessId; 
+       return NT_CURRENT_PROCESS;
 }
 
+#if 0
 
 WINBASEAPI
-HANDLE
+DWORD
 WINAPI
-GetCurrentThread()
+GetCurrentProcessId()
 {
-       return NT_CURRENT_PROCESS;
+       return GetTeb()->dwProcessId; 
 }
 
+
 WINBASEAPI
 DWORD
 WINAPI
@@ -135,3 +132,5 @@ BOOL FlushInstructionCache(
                return FALSE;
        }
 }
+
+#endif