blob: 40442a47c22cb8d17f6624883daed5621eab8e1a (
plain)
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
|
/*
* PARSEC HEADER: keycodes.h
*/
#ifndef _KEYCODES_H_
#define _KEYCODES_H_
//NOTE:
// this header is now just a wrapper for the
// file corresponding to the actual system
//NOTE:
// only on the mac the actual keycodes are adapted to the system.
// all other systems (e.g., Linux, IRIX) map native key codes to
// parsec key codes in their keyboard handlers. that is, from
// there on, the same key codes as on a pc are used.
#ifdef PARSEC_SERVER
#include "keys_server.h"
#else
#include "keys_sdl.h"
#endif
#endif // _KEYCODES_H_
|