From 66a7c5ad4da6c25997192772752d2aa3258a1a9e Mon Sep 17 00:00:00 2001 From: gewlitys Date: Thu, 24 Oct 2002 20:41:29 +0000 Subject: [PATCH] Added files missing from previous commit git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@146 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/options.c | 38 ++++++++++++++++++++++++++++++++++++++ sc2/src/options.h | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 sc2/src/options.c create mode 100644 sc2/src/options.h diff --git a/sc2/src/options.c b/sc2/src/options.c new file mode 100644 index 000000000..ef870d336 --- /dev/null +++ b/sc2/src/options.c @@ -0,0 +1,38 @@ +/* + * 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 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. + */ + +/* + * Eventually this should include all configuration stuff, + * for now there's few options which indicate 3do/pc flavors. + * By Mika Kolehmainen. + */ + +#include +#include "compiler.h" +#include "options.h" + +int optWhichMusic = MUSIC_PC; + + +BOOLEAN FileExists (char *filename) +{ + FILE *fp; + if ((fp = fopen(filename, "rb")) == NULL) + return FALSE; + + fclose (fp); + return TRUE; +} diff --git a/sc2/src/options.h b/sc2/src/options.h new file mode 100644 index 000000000..12f9fdf51 --- /dev/null +++ b/sc2/src/options.h @@ -0,0 +1,35 @@ +/* + * 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 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. + */ + +/* + * Eventually this should include all configuration stuff, + * for now there's few options which indicate 3do/pc flavors. + * By Mika Kolehmainen. + */ + +#ifndef OPTIONS_H +#define OPTIONS_H + +enum +{ + MUSIC_3DO, + MUSIC_PC, +}; +extern int optWhichMusic; + +BOOLEAN FileExists (char *filename); + +#endif