all repos — mgba @ 4d9c375f0e65e2ab634188e5127cf24a1a12a2dc

mGBA Game Boy Advance Emulator

src/util/memory.h (view raw)

1#ifndef MEMORY_H
2#define MEMORY_H
3
4#include "util/common.h"
5
6void* anonymousMemoryMap(size_t size);
7void mappedMemoryFree(void* memory, size_t size);
8
9#endif