Translated using Weblate.
[gammu.git] / include / gammu-types.h
blobd3299fd8b1d2d1902ff0c1351cf95a0050833887
1 /**
2 * \file gammu-types.h
3 * \author Michal Čihař
5 * Various types definitions
6 */
7 #ifndef __gammu_types_h
8 #define __gammu_types_h
10 /**
11 * \defgroup Type Types
12 * Definition of various useful types.
15 #if !defined(GLIB_MAJOR_VERSION) && !defined(USE_GLIB)
16 /**
17 * gboolean definition, compatible with glib.
19 typedef int gboolean;
20 #ifndef FALSE
21 #define FALSE (0)
22 #endif
23 #ifndef TRUE
24 #define TRUE (!FALSE)
25 #endif
26 #endif
28 #endif
30 /* Editor configuration
31 * vim: noexpandtab sw=8 ts=8 sts=8 tw=72: