-
Notifications
You must be signed in to change notification settings - Fork 8
/
keysfunc_defs.h
54 lines (53 loc) · 1.61 KB
/
keysfunc_defs.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
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
//
// 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
//
*/
enum {
FCT_NO_FUNCTION=0,
FCT_UP_KEY,
FCT_DOWN_KEY,
FCT_LEFT_KEY,
FCT_RIGHT_KEY,
FCT_SELECT_FILE_DRIVEA,
FCT_SELECT_FILE_DRIVEB,
FCT_SELECT_FILE_DRIVEA_AND_NEXTSLOT,
FCT_NEXTSLOT,
FCT_PREVSLOT,
FCT_SAVE,
FCT_REBOOT,
FCT_SAVEREBOOT,
FCT_CLEARSLOT,
FCT_CLEARSLOT_AND_NEXTSLOT,
FCT_SELECTSAVEREBOOT,
FCT_HELP,
FCT_SHOWSLOTS,
FCT_OK,
FCT_SEARCH,
FCT_TOP,
FCT_CHGCOLOR,
FCT_EMUCFG,
FCT_ESCAPE,
FCT_QUIT
};