Rev 547 | Rev 557 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
519 | mauro | 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 __SHARK_INPUT26_H__ |
||
22 | #define __SHARK_INPUT26_H__ |
||
23 | |||
530 | giacomo | 24 | #ifndef FALSE |
25 | #define FALSE 0 |
||
26 | #endif |
||
27 | |||
28 | #ifndef TRUE |
||
29 | #define TRUE 0 |
||
30 | #endif |
||
31 | |||
549 | mauro | 32 | int INPUT26_installed(void); |
519 | mauro | 33 | int INPUT26_init(void); |
34 | int INPUT26_close(void); |
||
35 | |||
549 | mauro | 36 | int EVBUG26_installed(void); |
519 | mauro | 37 | int EVBUG26_init(void); |
38 | int EVBUG26_close(void); |
||
39 | |||
40 | #endif |
||
41 |