Subversion Repositories shark

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
495 giacomo 1
/*
2
 * Project: S.Ha.R.K.
3
 *
4
 * Coordinators:
5
 *   Giorgio Buttazzo    <giorgio@sssup.it>
6
 *   Paolo Gai           <pj@gandalf.sssup.it>
7
 *
8
 * Authors     :
9
 *   Mauro Marinoni      <mauro.marinoni@unipv.it>
10
 *
11
 *
12
 * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
13
 *
14
 * http://www.sssup.it
15
 * http://retis.sssup.it
16
 * http://shark.sssup.it
17
 */
18
 
19
/* Glue Layer Header Linux Input Driver*/
20
 
21
#ifndef __INPUT_H__
22
#define __INPUT_H__
23
 
24
int KEYB26_init(void);
25
int KEYB26_close(void);
26
 
27
int MOUSE26_init(void);
28
int MOUSE26_close(void);
29
 
30
int SPEAK26_init(void);
31
int SPEAK26_close(void);
32
 
33
int joystick_init(void);
34
int joystick_exit(void);
35
 
36
int INPUT26_init(void);
37
int INPUT26_close(void);
38
 
39
int events_init(void);
40
int events_exit(void);
41
 
42
#endif
43