summaryrefslogtreecommitdiff
path: root/src/doom/d_iwad.h
diff options
context:
space:
mode:
authorSimon Howard2008-09-30 22:50:24 +0000
committerSimon Howard2008-09-30 22:50:24 +0000
commit8cae6e48779beb3dc8e95a5c32b422b2504b5722 (patch)
tree63d96a5f48a72c20f347a3399336b5693e42b5cc /src/doom/d_iwad.h
parent84552e7da9b4babc1c885d38088509faa733e7bb (diff)
downloadchocolate-doom-8cae6e48779beb3dc8e95a5c32b422b2504b5722.tar.gz
chocolate-doom-8cae6e48779beb3dc8e95a5c32b422b2504b5722.tar.bz2
chocolate-doom-8cae6e48779beb3dc8e95a5c32b422b2504b5722.zip
Move d_iwad.c into common code and update Heretic to use it on startup
to locate the IWAD file. Subversion-branch: /branches/raven-branch Subversion-revision: 1308
Diffstat (limited to 'src/doom/d_iwad.h')
-rw-r--r--src/doom/d_iwad.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/doom/d_iwad.h b/src/doom/d_iwad.h
deleted file mode 100644
index 281d3467..00000000
--- a/src/doom/d_iwad.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
-//
-// Copyright(C) 2006 Simon Howard
-//
-// 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.
-//
-// DESCRIPTION:
-// Find IWAD and initialise according to IWAD type.
-//
-//-----------------------------------------------------------------------------
-
-
-#ifndef __D_IWAD__
-#define __D_IWAD__
-
-char *D_FindWADByName(char *filename);
-char *D_TryFindWADByName(char *filename);
-char *D_FindIWAD(void);
-void D_SetSaveGameDir(void);
-void D_IdentifyVersion(void);
-void D_SetGameDescription(void);
-void D_FindInstalledIWADs(void);
-
-#endif
-