blob: bb59a4e87e4201121f34aa10caf355ea66aa493a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* See the COPYING.LIB file in the top-level directory.
*/
#ifndef CAPCSC_H
#define CAPCSC_H 1
#define CAPCSC_POLL_TIME 50 /* ms - Time we will poll for */
/* card change when a */
/* reader is connected */
#define CAPCSC_MAX_READERS 16
#define CAPCSC_APPLET "CAPCSC APPLET"
int capcsc_init(void);
#endif
|