snes9x/gtk/src/gtk_file.h

20 lines
638 B
C
Raw Normal View History

/*****************************************************************************\
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_FILE_H
#define __GTK_FILE_H
2022-05-06 23:17:03 +02:00
#include <string>
2010-09-25 17:46:12 +02:00
2022-05-06 23:17:03 +02:00
std::string S9xBasenameNoExt(std::string);
2010-09-25 17:46:12 +02:00
2022-05-06 23:17:03 +02:00
void S9xLoadState(std::string);
void S9xSaveState(std::string);
2010-09-25 17:46:12 +02:00
void S9xQuickSaveSlot(int slot);
void S9xQuickLoadSlot(int slot);
2010-09-25 17:46:12 +02:00
#endif /* __GTK_FILE_H */