-
Notifications
You must be signed in to change notification settings - Fork 8
/
config_file.h
41 lines (36 loc) · 1.58 KB
/
config_file.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
//
// Copyright (C) 2009-2023 Jean-François DEL NERO
//
// This file is part of the HxCFloppyEmulator file selector.
//
// HxCFloppyEmulator file selector may be used and distributed without restriction
// provided that this copyright statement is not removed from the file and that any
// derivative work contains the original copyright notice and the associated
// disclaimer.
//
// HxCFloppyEmulator file selector 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.
//
// HxCFloppyEmulator file selector 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 HxCFloppyEmulator file selector; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
//
*/
extern unsigned char cfgfile_header[512];
int read_cfg_file(ui_context * ctx,unsigned char * cfgfile_header);
int save_cfg_file(ui_context * ctx,unsigned char * sdfecfg_file, int pre_selected_slot);
int getcfg_backgroundcolor();
void setcfg_backgroundcolor(int color);
int getcfg_fontselection();
void setcfg_fontselection(int font_id);
#ifdef TEST_FLOPPY_IO
void test_access(ui_context * ctx, int i);
#endif