TombEngine/TR5Main/Global/malloc.h

11 lines
239 B
C
Raw Normal View History

2018-08-19 09:46:58 +02:00
#pragma once
2020-04-24 19:15:05 +02:00
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();
void game_free(int size, int type);