reactos/reactos/lib/kernel32/internal/init.c
David Welch fd78805ffc Partially implemented PEB
Some bug fixes
Hacked crtdll to compile with a minimal set of functions

svn path=/trunk/; revision=371
1999-04-10 12:08:24 +00:00

12 lines
199 B
C

#include <windows.h>
#include <ddk/ntddk.h>
#include <stdarg.h>
#include <kernel32/kernel32.h>
VOID KERNEL32_Init()
{
DPRINT("KERNEL32_Init()\n");
__HeapInit(0, 4*1024*1024, 4*1024*1024);
}