29 lines
496 B
C
29 lines
496 B
C
|
#ifndef __GTK_S9XCORE_H
|
||
|
#define __GTK_S9XCORE_H
|
||
|
|
||
|
#include "snes9x.h"
|
||
|
#include "memmap.h"
|
||
|
#include "debug.h"
|
||
|
#include "cpuexec.h"
|
||
|
#include "ppu.h"
|
||
|
#include "snapshot.h"
|
||
|
#include "apu/apu.h"
|
||
|
#include "display.h"
|
||
|
#include "gfx.h"
|
||
|
#include "spc7110.h"
|
||
|
#include "controls.h"
|
||
|
#include "logger.h"
|
||
|
#include "cheats.h"
|
||
|
#include "movie.h"
|
||
|
#include "conffile.h"
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
#include <ctype.h>
|
||
|
#include <dirent.h>
|
||
|
|
||
|
#ifdef NETPLAY_SUPPORT
|
||
|
#include "netplay.h"
|
||
|
#endif
|
||
|
|
||
|
#endif /* __GTK_S9XCORE_H */
|