From bf5cb54162afa5390eab1ae155a9defd44d0f898 Mon Sep 17 00:00:00 2001 From: Nebuleon Fumika Date: Fri, 18 Jan 2013 02:41:32 -0500 Subject: Fix multiple compiler warnings: forward declaration, implicit declaration, unused variable, variable used uninitialised, unused function (when not used anywhere else with a #define). --- source/nds/entry.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 source/nds/entry.h (limited to 'source/nds/entry.h') diff --git a/source/nds/entry.h b/source/nds/entry.h new file mode 100644 index 0000000..a6bd350 --- /dev/null +++ b/source/nds/entry.h @@ -0,0 +1,15 @@ +#ifdef __cplusplus +extern "C" { +#endif + int game_load_state(char* file); + int game_save_state(char* file); + void S9xAutoSaveSRAM (); + + void game_restart(void); + + int load_gamepak(char* file); +#ifdef __cplusplus +} +#endif + +const char *S9xGetFilename (const char *ex); -- cgit v1.2.3