-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKeyboard.h
executable file
·52 lines (41 loc) · 1.54 KB
/
Keyboard.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*************************************************************************
Keyboard - description
-------------------
date : Feb. 19 2014
copyright : (C) 2014 Yannick Marion & Gustave Monod
e-mail : [email protected]
*************************************************************************/
//---------- Interface of the <Keyboard> task (file Keyboard.h) --------------
#if !defined ( KEYBOARD_H )
#define KEYBOARD_H
//------------------------------------------------------------------------
// Role of the <Keyboard> task
//
// Creates:
// * Keyboard listener
//
// Terminates task and destroys everything when:
// * The input to quit is received
//------------------------------------------------------------------------
///////////////////////////////////////////////////////////////// INCLUDE
//-------------------------------------------------------- Used interfaces
//-------------------------------------------------------------- Constants
//------------------------------------------------------------------ Types
////////////////////////////////////////////////////////////////// PUBLIC
//------------------------------------------------------- Public functions
void Keyboard ( );
// How to use:
//
// Contract:
void Commande ( char code, unsigned int valeur );
// How to use:
//
// Contract:
//
// type Name ( parameter list );
// How to use:
//
// Contract:
//
#endif // KEYBOARD_H