-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvkb_device.c
52 lines (45 loc) · 1.27 KB
/
vkb_device.c
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
51
52
/*
* definition of operation table
*
* Virtual Tiny Keyboard
*
* Copyright (c) 1999-2000 by Takashi Iwai
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdio.h>
#include "vkb.h"
#define numberof(ary) (sizeof(ary)/sizeof(ary[0]))
#ifdef VKB_USE_ALSA
extern vkb_devinfo_t alsa_devinfo;
#endif
#ifdef VKB_USE_AWE
extern vkb_devinfo_t awe_devinfo;
#endif
#ifdef VKB_USE_MIDI
extern vkb_devinfo_t midi_devinfo;
#endif
vkb_devinfo_t *vkb_device[] = {
#ifdef VKB_USE_ALSA
&alsa_devinfo,
#endif
#ifdef VKB_USE_AWE
&awe_devinfo,
#endif
#ifdef VKB_USE_MIDI
&midi_devinfo,
#endif
};
int vkb_num_devices = numberof(vkb_device);