home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / cbm / os-include.lha / os-include / prefs / input.h < prev    next >
C/C++ Source or Header  |  1993-10-15  |  936b  |  50 lines

  1. #ifndef PREFS_INPUT_H
  2. #define PREFS_INPUT_H
  3. /*
  4. **    $VER: input.h 38.2 (28.6.91)
  5. **    Includes Release 40.15
  6. **
  7. **    File format for input preferences
  8. **
  9. **    (C) Copyright 1991-1993 Commodore-Amiga, Inc.
  10. **    All Rights Reserved
  11. */
  12.  
  13. /*****************************************************************************/
  14.  
  15.  
  16. #ifndef EXEC_TYPES_H
  17. #include <exec/types.h>
  18. #endif
  19.  
  20. #ifndef LIBRARIES_IFFPARSE_H
  21. #include <libraries/iffparse.h>
  22. #endif
  23.  
  24. #ifndef DEVICES_TIMER_H
  25. #include <devices/timer.h>
  26. #endif
  27.  
  28.  
  29. /*****************************************************************************/
  30.  
  31.  
  32. #define ID_INPT MAKE_ID('I','N','P','T')
  33.  
  34.  
  35. struct InputPrefs
  36. {
  37.     char       ip_Keymap[16];
  38.     UWORD       ip_PointerTicks;
  39.     struct timeval ip_DoubleClick;
  40.     struct timeval ip_KeyRptDelay;
  41.     struct timeval ip_KeyRptSpeed;
  42.     WORD       ip_MouseAccel;
  43. };
  44.  
  45.  
  46. /*****************************************************************************/
  47.  
  48.  
  49. #endif /* PREFS_INPUT_H */
  50.