all repos — mgba @ 8f5145f4b82fc7ba69be424bd3585ac49b55f5c9

mGBA Game Boy Advance Emulator

src/util/memory.h (view raw)

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