--- hatari/src/includes/options.h 2019/04/01 07:14:49 1.1.1.3 +++ hatari/src/includes/options.h 2019/04/09 08:55:43 1.1.1.8 @@ -1,19 +1,23 @@ /* Hatari - options.h - This file is distributed under the GNU Public License, version 2 or at - your option any later version. Read the file gpl.txt for details. + This file is distributed under the GNU General Public License, version 2 + or at your option any later version. Read the file gpl.txt for details. */ #ifndef HATARI_OPTIONS_H #define HATARI_OPTIONS_H extern bool bLoadAutoSave; extern bool bLoadMemorySave; -extern bool bBiosIntercept; +extern bool AviRecordOnStartup; +extern int ConOutDevice; -/* Parses all Hatari command line options and sets Hatari state. - * Returns TRUE if everything was OK, FALSE otherwise. - */ -extern bool Opt_ParseParameters(int argc, const char *argv[]); +#define CONOUT_DEVICE_NONE 127 /* valid ones are 0-7 */ + +extern Uint32 Opt_GetNoParachuteFlag(void); +extern bool Opt_IsAtariProgram(const char *path); +extern int Opt_ValueAlignMinMax(int value, int align, int min, int max); +extern bool Opt_ParseParameters(int argc, const char * const argv[]); +extern char *Opt_MatchOption(const char *text, int state); #endif /* HATARI_OPTIONS_H */