2019-11-20 16:21:32 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 2010-2019 EDuke32 developers and contributors
|
|
|
|
Copyright (C) 2019 sirlemonhead, Nuke.YKT
|
|
|
|
This file is part of PCExhumed.
|
|
|
|
PCExhumed is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License version 2
|
|
|
|
as published by the Free Software Foundation.
|
|
|
|
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
2019-08-26 03:59:14 +00:00
|
|
|
|
|
|
|
#ifndef __config_h__
|
|
|
|
#define __config_h__
|
|
|
|
|
2019-08-31 09:08:38 +00:00
|
|
|
#include "compat.h"
|
2019-11-23 23:04:15 +00:00
|
|
|
#include "gamecontrol.h"
|
2019-08-31 09:08:38 +00:00
|
|
|
|
2019-11-22 23:11:37 +00:00
|
|
|
BEGIN_PS_NS
|
|
|
|
|
2019-08-27 06:08:18 +00:00
|
|
|
|
2019-08-26 03:59:14 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int32_t fullscreen;
|
|
|
|
int32_t xdim;
|
|
|
|
int32_t ydim;
|
|
|
|
int32_t bpp;
|
|
|
|
int32_t forcesetup;
|
|
|
|
int32_t noautoload;
|
|
|
|
} ud_setup_t;
|
|
|
|
|
|
|
|
|
|
|
|
extern int lMouseSens;
|
|
|
|
|
|
|
|
extern ud_setup_t gSetup;
|
2019-08-27 06:08:18 +00:00
|
|
|
extern int32_t scripthandle;
|
|
|
|
extern int32_t setupread;
|
|
|
|
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2019-11-24 09:03:19 +00:00
|
|
|
int CONFIG_ReadSetup(void);
|
|
|
|
void CONFIG_SetDefaults(void);
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2019-11-22 23:11:37 +00:00
|
|
|
END_PS_NS
|
|
|
|
|
2019-08-26 03:59:14 +00:00
|
|
|
#endif
|