2016-03-01 15:47:10 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
2017-04-17 11:33:19 +00:00
|
|
|
// Copyright 1993-1996 id Software
|
|
|
|
// Copyright 1999-2016 Randy Heit
|
|
|
|
// Copyright 2002-2016 Christoph Oelckers
|
2016-03-01 15:47:10 +00:00
|
|
|
//
|
2017-04-17 11:33:19 +00:00
|
|
|
// 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 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2016-03-01 15:47:10 +00:00
|
|
|
//
|
2017-04-17 11:33:19 +00:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
2016-03-01 15:47:10 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2017-04-17 11:33:19 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2016-03-01 15:47:10 +00:00
|
|
|
//
|
2017-04-17 11:33:19 +00:00
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see http://www.gnu.org/licenses/
|
2016-03-01 15:47:10 +00:00
|
|
|
//
|
|
|
|
//-----------------------------------------------------------------------------
|
2017-04-17 11:33:19 +00:00
|
|
|
//
|
2016-03-01 15:47:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef __M_MISC__
|
|
|
|
#define __M_MISC__
|
|
|
|
|
2020-04-11 10:19:28 +00:00
|
|
|
#include "basics.h"
|
2016-03-01 15:47:10 +00:00
|
|
|
#include "zstring.h"
|
|
|
|
|
|
|
|
class FConfigFile;
|
|
|
|
class FGameConfigFile;
|
|
|
|
class FIWadManager;
|
|
|
|
|
|
|
|
extern FGameConfigFile *GameConfig;
|
|
|
|
|
|
|
|
void M_FindResponseFile (void);
|
|
|
|
|
|
|
|
// [RH] M_ScreenShot now accepts a filename parameter.
|
|
|
|
// Pass a NULL to get the original behavior.
|
|
|
|
void M_ScreenShot (const char *filename);
|
|
|
|
|
|
|
|
void M_LoadDefaults ();
|
|
|
|
|
|
|
|
bool M_SaveDefaults (const char *filename);
|
|
|
|
void M_SaveCustomKeys (FConfigFile *config, char *section, char *subsection, size_t sublen);
|
|
|
|
|
2018-07-15 07:44:14 +00:00
|
|
|
|
2020-04-22 17:57:14 +00:00
|
|
|
#include "i_specialpaths.h"
|
2016-03-01 15:47:10 +00:00
|
|
|
#endif
|