60 lines
1.6 KiB
C
60 lines
1.6 KiB
C
/*
|
|
*
|
|
* Singe 2
|
|
* Copyright (C) 2006-2020 Scott Duensing <scott@kangaroopunch.com>
|
|
*
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef SINGE_H
|
|
#define SINGE_H
|
|
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
#include "common.h"
|
|
|
|
|
|
// Don't forget to update singe.rc!
|
|
#define SINGE_VERSION 2.00
|
|
#define VERSION_STRING "v2.00b6"
|
|
#define COPYRIGHT_END_YEAR "2020"
|
|
|
|
|
|
// Command line options
|
|
extern char *_confVideoFile;
|
|
extern char *_confScriptFile;
|
|
extern char *_confDataDir;
|
|
extern bool _confIsFrameFile;
|
|
extern bool _confStretchVideo;
|
|
extern bool _confNoMouse;
|
|
extern bool _confNoStats;
|
|
extern bool _confNoSound;
|
|
extern bool _confFullScreen;
|
|
extern bool _confFullScreenWindow;
|
|
extern bool _confShowCalculated;
|
|
extern int32_t _confVolumeVldp;
|
|
extern int32_t _confVolumeNonVldp;
|
|
extern int32_t _confScaleFactor;
|
|
extern int32_t _confXResolution;
|
|
extern int32_t _confYResolution;
|
|
|
|
|
|
void singe(SDL_Window *window, SDL_Renderer *renderer);
|
|
|
|
|
|
#endif // SINGE_H
|