all repos — mgba @ 0723646354a46d5ad6ef33089af288684f350b41

mGBA Game Boy Advance Emulator

src/platform/python/_builder.h (view raw)

 1#define COMMON_H
 2#define PNG_H
 3#define _SYS_TIME_H_
 4#define _TIME_H_
 5
 6#define ATTRIBUTE_FORMAT(X, Y, Z)
 7#define DECL_BITFIELD(newtype, oldtype) typedef oldtype newtype
 8#define DECL_BIT(type, name, bit)
 9#define DECL_BITS(type, name, bit, nbits)
10
11typedef int... time_t;
12typedef int... off_t;
13typedef ... va_list;
14typedef ...* png_structp;
15typedef ...* png_infop;
16typedef ...* png_unknown_chunkp;
17
18#include <limits.h>
19
20#include "core/core.h"
21#include "platform/python/vfs-py.h"
22
23#ifdef USE_PNG
24#include "util/png-io.h"
25#endif
26#ifdef M_CORE_GBA
27#include "arm/arm.h"
28#include "gba/gba.h"
29#endif
30#ifdef M_CORE_GB
31#include "lr35902/lr35902.h"
32#include "gb/gb.h"
33#endif