install: add install sources and resources
[doom2d-restoration.git] / GAME / LEVELS / MEMORY.H
blob2b8bf27d0a9b65859875a72541595d6bf7119670
1 // High-level memory allocation
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
7 void M_startup(void);
8 void M_shutdown(void);
9 void *M_lock(int);
10 void M_unlock(void *);
12 #ifdef __cplusplus
14 #endif