1 #ifndef PREFS_INPUT_H 2 #define PREFS_INPUT_H 3 4 /* 5 input prefs definitions 6 7 Copyright ? 2002-2016 The MorphOS Development Team, All Rights Reserved. 8 */ 9 10 #ifndef EXEC_TYPES_H 11 # include <exec/types.h> 12 #endif 13 14 #ifndef LIBRARIES_IFFPARSE_H 15 # include <libraries/iffparse.h> 16 #endif 17 18 #ifndef DEVICES_TIMER_H 19 # include <devices/timer.h> 20 #endif 21 22 23 #pragma pack(2) 24 25 26 #define ID_INPT MAKE_ID('I','N','P','T') 27 28 struct InputPrefs 29 { 30 char ip_Keymap[16]; 31 UWORD ip_PointerTicks; 32 struct TimeVal ip_DoubleClick; 33 struct TimeVal ip_KeyRptDelay; 34 struct TimeVal ip_KeyRptSpeed; 35 WORD ip_MouseAccel; 36 }; 37 38 39 40 #pragma pack() 41 42 #endif /* PREFS_INPUT_H */