mgba/src/gba/gba-thread.h

15 lines
226 B
C
Raw Normal View History

2013-04-20 22:54:09 +00:00
#ifndef GBA_THREAD_H
#define GBA_THREAD_H
#include <pthread.h>
struct GBAThread {
struct GBA* gba;
struct ARMDebugger* debugger;
int fd;
};
int GBAThreadStart(struct GBAThread* threadContext, pthread_t* thread);
#endif