pcsc-lite  1.8.8
configfile.h
1 /*
2  * Header file for reading lexical config files.
3  *
4  * MUSCLE SmartCard Development ( http://www.linuxnet.com )
5  *
6  * Copyright (C) 1999-2002
7  * David Corcoran <corcoran@linuxnet.com>
8  * Copyright (C) 2002-2010
9  * Ludovic Rousseau <ludovic.rousseau@free.fr>
10  *
11  * $Id: configfile.h 5047 2010-06-29 14:39:24Z rousseau $
12  */
13 
14 #ifndef __configfile_h__
15 #define __configfile_h__
16 
17 #ifdef __cplusplus
18 extern "C"
19 {
20 #endif
21 
22  int DBGetReaderList(const char *readerconf,
23  /*@out@*/ SerialReader **caller_reader_list);
24 
25  int DBGetReaderListDir(const char *readerconf_dir,
26  /*@out@*/ SerialReader **caller_reader_list);
27 
28 #ifdef __cplusplus
29 }
30 #endif
31 
32 #endif /* __configfile_h__ */