all repos — mgba @ 6f5ec7d5e46a22524fa0e4f1b1f46582a28b4101

mGBA Game Boy Advance Emulator

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

 1#include "flags.h"
 2
 3struct VFile;
 4
 5extern bool mPythonLoadScript(const char*, struct VFile*);
 6extern void mPythonRunPending();
 7extern bool mPythonLookupSymbol(const char* name, int32_t* out);
 8
 9#ifdef USE_DEBUGGERS
10extern void mPythonSetDebugger(struct mDebugger*);
11extern void mPythonDebuggerEntered(enum mDebuggerEntryReason, struct mDebuggerEntryInfo*);
12#endif