Initial commit
[platform/upstream/ccid.git] / src / towitoko / defines.h
1 /*
2     defines.h
3
4     This file is part of the Unix driver for Towitoko smartcard readers
5     Copyright (C) 2000 Carlos Prados <cprados@yahoo.com>
6
7     This library is free software; you can redistribute it and/or
8     modify it under the terms of the GNU Lesser General Public
9     License as published by the Free Software Foundation; either
10     version 2 of the License, or (at your option) any later version.
11
12     This library is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15     Lesser General Public License for more details.
16
17         You should have received a copy of the GNU Lesser General Public License
18         along with this library; if not, write to the Free Software Foundation,
19         Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 */
21
22 #ifndef DEFINES_H
23 #define DEFINES_H
24
25 /*
26  * Get configuration information
27  */
28
29 #ifdef HAVE_CONFIG_H
30 #include <config.h>
31 #endif
32
33 /*
34  * Boolean constants
35  */
36
37 #ifndef TRUE
38 #define TRUE    1
39 #endif
40
41 #ifndef FALSE
42 #define FALSE   0
43 #endif
44
45 /*
46  * Type definitions
47  */
48
49 #include <wintypes.h>
50
51 #endif /* DEFINES_H */
52