/* gngeo a neogeo emulator * Copyright (C) 2001 Peponas Mathieu * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _FILEIO_H_ #define _FILEIO_H_ int open_rom(char *romname); SDL_bool init_game(char *rom_name); void open_bios(void); void open_conf(void); void open_nvram(char *name); void save_nvram(char *name); void open_memcard(char *name); void save_memcard(char *name); void list_game(void); char *get_gngeo_dir(void); void chomp(char *str); char *my_fgets(char *s, int size, FILE *stream); #endif