2020-05-30 15:55:23 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
extern char* malloc_buffer;
|
|
|
|
extern int malloc_size;
|
|
|
|
extern char* malloc_ptr;
|
|
|
|
extern int malloc_free;
|
|
|
|
extern int malloc_used;
|
|
|
|
|
|
|
|
char* game_malloc(int size);
|
|
|
|
void init_game_malloc();
|
2020-04-24 19:15:05 +02:00
|
|
|
void game_free(int size, int type);
|