mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 09:53:04 +00:00

Some bug fixes Hacked crtdll to compile with a minimal set of functions svn path=/trunk/; revision=371
12 lines
269 B
C
12 lines
269 B
C
/* TEB/PEB parameters */
|
|
#ifndef __INCLUDE_INTERNAL_TEB
|
|
#define __INCLUDE_INTERNAL_TEB
|
|
|
|
#include <internal/ps.h>
|
|
|
|
#define PEB_BASE (0xb0001000)
|
|
#define PEB_STARTUPINFO (0xb0003000)
|
|
|
|
#define NtCurrentPeb() ((PNT_PEB)PEB_BASE)
|
|
|
|
#endif /* __INCLUDE_INTERNAL_TEB */
|