Scribus
Open source desktop publishing at your fingertips
libwpd_types.h
1 /* libwpd
2  * Copyright (C) 2005 William Lachance (wrlach@gmail.com)
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
17  *
18  * For further information visit http://libwpd.sourceforge.net
19  */
20 
21 /* "This product is not manufactured, approved, or supported by
22  * Corel Corporation or Corel Corporation Limited."
23  */
24 
25 #ifndef LIBWPD_TYPES_H
26 #define LIBWPD_TYPES_H
27 
28 #ifdef _MSC_VER
29 typedef signed char int8_t;
30 typedef unsigned char uint8_t;
31 typedef signed short int16_t;
32 typedef unsigned short uint16_t;
33 typedef signed int int32_t;
34 typedef unsigned int uint32_t;
35 #else /* _MSC_VER */
36 #include <inttypes.h>
37 #endif /* _MSC_VER */
38 
39 #endif /* LIBWPD_TYPES_H */