src/gba/gba-config.h (view raw)
1#ifndef GBA_CONFIG_H
2#define GBA_CONFIG_H
3
4#include "util/common.h"
5
6struct Configuration;
7struct StartupOptions;
8struct GraphicsOpts;
9
10bool GBAConfigLoad(struct Configuration*);
11
12void GBAConfigMapStartupOpts(const struct Configuration*, const char* port, struct StartupOptions*);
13void GBAConfigMapGraphicsOpts(const struct Configuration*, const char* port, struct GraphicsOpts*);
14
15#endif