added a Makefile to use it as a C library. no python dependencies. added 2 example...
[rofl0r-libxauto.git] / src / config.h
bloba68ba5d5cadb81a5e663722d7db250c48788aee8
1 /***************************************************************************
2 * Copyright (C) 2009 by Chris Parker *
3 * chrsprkr3@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the Python License version 2.5 or later. *
7 * *
8 * This program is distributed in the hope that it will be useful, *
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
11 ***************************************************************************/
14 $URL$
15 $Author$
16 $Date$
17 $Rev$
20 #ifndef DEFAULTS_H_
21 #define DEFAULTS_H_
23 #define BOOL unsigned short
25 static const BOOL TRUE = 1;
26 static const BOOL FALSE = 0;
27 static const unsigned short ZERO = 0;
29 static const int LOG_LEVEL_NONE = 0;
30 static const int LOG_LEVEL_VERBOSE = 1;
31 static const int LOG_LEVEL_EXTRA_VERBOSE = 2;
33 #endif /* DEFAULTS_H_ */