2018-11-16 00:42:29 +01:00
|
|
|
/*****************************************************************************\
|
|
|
|
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.
|
|
|
|
\*****************************************************************************/
|
|
|
|
|
2010-09-25 17:46:12 +02:00
|
|
|
#ifndef __GTK_S9X_H
|
|
|
|
#define __GTK_S9X_H
|
|
|
|
|
|
|
|
#include "gtk_config.h"
|
|
|
|
#include "gtk_s9xcore.h"
|
|
|
|
#include "gtk_s9xwindow.h"
|
|
|
|
|
2018-12-04 03:52:12 +01:00
|
|
|
#include <glib/gi18n.h>
|
2010-09-25 17:46:12 +02:00
|
|
|
|
2019-02-20 23:25:56 +01:00
|
|
|
#define SNES9X_GTK_AUTHORS "(c) 2007 - 2019 Brandon Wright (bearoso@gmail.com)"
|
|
|
|
#define SNES9X_GTK_VERSION "87"
|
2010-09-25 17:46:12 +02:00
|
|
|
|
|
|
|
extern Snes9xWindow *top_level;
|
|
|
|
extern Snes9xConfig *gui_config;
|
|
|
|
|
|
|
|
int S9xOpenROM (const char *filename);
|
2018-10-28 22:55:33 +01:00
|
|
|
void S9xNoROMLoaded ();
|
|
|
|
void S9xROMLoaded ();
|
2010-09-25 17:46:12 +02:00
|
|
|
|
|
|
|
#endif /* __GTK_S9X_H */
|