v0.5 kick-off

This commit is contained in:
robijn
2001-12-30 00:15:25 +00:00
parent c28d25b795
commit 71056ec551
88 changed files with 6638 additions and 5469 deletions
+12 -2
View File
@@ -6,14 +6,24 @@
* COPYING file distributed with this package.
*
* Copyright (c) 1999, William Ferrell, Scott Scriven
* 2001, Joris Robijn
*
*/
#ifndef INPUT_H
#define INPUT_H
// Accepts and uses keypad input while displaying screens...
/* Accepts and uses keypad input while displaying screens... */
int handle_input ();
/* These defines should be used by drivers for version 0.4.3 of LCDproc
* as return values for _getkey().
* You should not change these values, as some drivers still return
* A, B, C; D directly without using these defines!
*/
#define INPUT_PAUSE_KEY 'A'
#define INPUT_BACK_KEY 'B'
#define INPUT_FORWARD_KEY 'C'
#define INPUT_MAIN_MENU_KEY 'D'
#endif