mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 09:52:56 +00:00

Some bug fixes Hacked crtdll to compile with a minimal set of functions svn path=/trunk/; revision=371
12 lines
199 B
C
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);
|
|
}
|