TombEngine/TR5Main/Game/malloc.h

11 lines
229 B
C
Raw Normal View History

#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);