Commit in reactos/w32api/include/ddk on MAIN | |||
ntapi.h | +6 | 1.1 -> 1.2 |
- Added definitions for NtCurrentProcess and NtCurrentThread.
diff -u -r1.1 -r1.2 --- ntapi.h 21 Feb 2004 09:20:38 -0000 1.1 +++ ntapi.h 19 Mar 2004 21:33:48 -0000 1.2 @@ -48,6 +48,12 @@
typedef PVOID PEXECUTION_STATE; typedef PVOID PLANGID;
+#ifndef NtCurrentProcess +#define NtCurrentProcess() ( (HANDLE) 0xFFFFFFFF ) +#endif /* NtCurrentProcess */ +#ifndef NtCurrentThread +#define NtCurrentThread() ( (HANDLE) 0xFFFFFFFE ) +#endif /* NtCurrentThread */
/* System information and control */