~benklop/+junk/lcdproc

« back to all changes in this revision

Viewing changes to server/input.h

  • Committer: Bazaar Package Importer
  • Author(s): Noel Koethe
  • Date: 2002-04-18 18:05:00 UTC
  • Revision ID: james.westby@ubuntu.com-20020418180500-94iz2toqhzm3zvna
Tags: 0.4.3-10
* updated code from cvs to get all drivers updated.
  upstream maintainer asked for this for woody release
  this version will the 0.4.3 upstream release
* small changes in description
* added some upstream Docs which are not in the source

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
/* These defines should be used by drivers for version 0.4.3 of LCDproc
20
20
 * as return values for _getkey().
21
21
 * You should not change these values, as some drivers still return
22
 
 * A, B, C; D directly without using these defines!
 
22
 * A, B, C, D directly without using these defines!
23
23
 */
24
24
#define INPUT_PAUSE_KEY         'A'
25
25
#define INPUT_BACK_KEY          'B'
26
26
#define INPUT_FORWARD_KEY       'C'
27
27
#define INPUT_MAIN_MENU_KEY     'D'
28
28
 
 
29
#define DEFAULT_FREEPAUSEKEY 0
 
30
#define DEFAULT_FREEBACKKEY 0
 
31
#define DEFAULT_FREEFORWARDKEY 0
 
32
#define DEFAULT_FREEMAINMENUKEY 0
 
33
 
 
34
extern int freepausekey;
 
35
extern int freebackkey;
 
36
extern int freeforwardkey;
 
37
extern int freemainmenukey;
 
38
 
29
39
#endif