mirror of
https://github.com/ondra-novak/gates_of_skeldal.git
synced 2025-07-05 14:10:27 -04:00
13 lines
205 B
C
13 lines
205 B
C
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void *map_file_to_memory(const char *name, size_t *sz);
|
|
void unmap_file(void *ptr, size_t sz);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|