Added files missing from previous commit

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@146 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
gewlitys
2002-10-24 20:41:29 +00:00
parent b4acbace78
commit 66a7c5ad4d
2 changed files with 73 additions and 0 deletions
+38
View File
@@ -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 <stdio.h>
#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;
}
+35
View File
@@ -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