mirror of
https://github.com/reactos/reactos.git
synced 2025-07-22 20:43:42 +00:00
8 lines
138 B
C
8 lines
138 B
C
#include <windows.h>
|
|
#include <ddk/ntddk.h>
|
|
#include <stdarg.h>
|
|
|
|
VOID KERNEL32_Init(VOID)
|
|
{
|
|
__HeapInit(0, 4*1024*1024, 4*1024*1024);
|
|
}
|