beta-0.89.2
[luatex.git] / source / libs / poppler / poppler-src / goo / gtypes_p.h
blobcc4866e1389f7e792c5bb32b2d2f55f2d2a1cb67
1 /*
2 * gtypes_p.h
4 * Some useful simple types.
6 * Copyright (C) 2011 Adrian Johnson <ajohnson@redneon.com>
7 */
9 #ifndef GTYPES_P_H
10 #define GTYPES_P_H
12 #include "config.h"
15 * Define precise integer types.
17 #if HAVE_STDINT_H
18 #include <stdint.h>
19 #elif _MSC_VER
20 typedef signed __int8 int8_t;
21 typedef unsigned __int8 uint8_t;
22 typedef signed __int16 int16_t;
23 typedef unsigned __int16 uint16_t;
24 typedef signed __int32 int32_t;
25 typedef unsigned __int32 uint32_t;
26 typedef signed __int64 int64_t;
27 typedef unsigned __int64 uint64_t;
28 #endif
30 #endif