7 lines
154 B
C
7 lines
154 B
C
|
#pragma once
|
||
|
|
||
|
extern int memory_lock(void);
|
||
|
extern int memory_unlock(void);
|
||
|
extern void *memory_alloc_page(int);
|
||
|
extern int memory_free_page(void* ,int);
|