home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Pascal / MAXONPASCAL2.DMS / in.adf / INCLUDE / prefs / input.h < prev    next >
Encoding:
Text File  |  1994-07-25  |  675 b   |  25 lines

  1. {$if not def PREFS_INPUT_H} CONST PREFS_INPUT_H=TRUE;
  2.  
  3. { ******************************************************************
  4.   ** KickPascal-Include-Datei "prefs/input.h" zu Kickstart 3.0 **
  5.   ****************************************************************** }
  6.  
  7. {$if not def LIBRARIES_IFFPARSE_H;incl "libraries/iffparse.h";endif}
  8. {$if not def DEVICES_TIMER_H;incl "devices/timer.h";endif}
  9.  
  10. CONST
  11.  ID_INPT = $494e5054; { "INPT" }
  12.  
  13. TYPE
  14.  p_InputPrefs=^InputPrefs;
  15.  InputPrefs = RECORD
  16.   ip_Keymap       : String[16];
  17.   ip_PointerTicks : Word;
  18.   ip_DoubleClick  : timeval;
  19.   ip_KeyRptDelay  : timeval;
  20.   ip_KeyRptSpeed  : timeval;
  21.   ip_MouseAccel   : Integer;
  22.  end;
  23.  
  24. {$endif}
  25.