Updated PCI IDs to latest snapshot.
[tangerine.git] / compiler / include / prefs / input.h
blobbb089067ed4e7a480cd4db30f7cd9e9029097228
1 #ifndef PREFS_INPUT_H
2 #define PREFS_INPUT_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: Input prefs definitions
9 Lang: english
12 #ifndef EXEC_TYPES_H
13 # include <exec/types.h>
14 #endif
16 #ifndef LIBRARIES_IFFPARSE_H
17 # include <libraries/iffparse.h>
18 #endif
20 #ifndef DEVICES_TIMER_H
21 # include <devices/timer.h>
22 #endif
24 #define ID_INPT MAKE_ID('I','N','P','T')
26 struct InputPrefs {
27 char ip_Keymap[16];
28 UWORD ip_PointerTicks;
29 struct timeval ip_DoubleClick;
30 struct timeval ip_KeyRptDelay;
31 struct timeval ip_KeyRptSpeed;
32 WORD ip_MouseAccel;
35 #endif /* PREFS_INPUT_H */