27 lines
808 B
C
27 lines
808 B
C
/*****************************************************************************\
|
|
Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
|
|
This file is licensed under the Snes9x License.
|
|
For further information, consult the LICENSE file in the root directory.
|
|
\*****************************************************************************/
|
|
|
|
#ifndef __GTK_S9X_H
|
|
#define __GTK_S9X_H
|
|
|
|
#include "gtk_config.h"
|
|
#include "gtk_s9xcore.h"
|
|
#include "gtk_s9xwindow.h"
|
|
|
|
#include <glib/gi18n.h>
|
|
|
|
#define SNES9X_GTK_AUTHORS "(c) 2007 - 2018 Brandon Wright (bearoso@gmail.com)"
|
|
#define SNES9X_GTK_VERSION "86"
|
|
|
|
extern Snes9xWindow *top_level;
|
|
extern Snes9xConfig *gui_config;
|
|
|
|
int S9xOpenROM (const char *filename);
|
|
void S9xNoROMLoaded ();
|
|
void S9xROMLoaded ();
|
|
|
|
#endif /* __GTK_S9X_H */
|