decompile window.s

This commit is contained in:
DizzyEggg
2017-09-01 16:53:06 +02:00
parent 6f03356237
commit 7daeebd3f4
6 changed files with 972 additions and 1289 deletions

8
include/malloc.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef GUARD_MALLOC_H
#define GUARD_MALLOC_H
void *Alloc(u32 size);
void *AllocZeroed(u32 size);
void Free(void *pointer);
#endif // GUARD_MALLOC_H