summaryrefslogtreecommitdiff
path: root/Build/source/libs/poppler/poppler-src/goo/gtypes_p.h
blob: cc4866e1389f7e792c5bb32b2d2f55f2d2a1cb67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * gtypes_p.h
 *
 * Some useful simple types.
 *
 * Copyright (C) 2011 Adrian Johnson <ajohnson@redneon.com>
 */

#ifndef GTYPES_P_H
#define GTYPES_P_H

#include "config.h"

/*
 * Define precise integer types.
 */
#if HAVE_STDINT_H
#include <stdint.h>
#elif _MSC_VER
typedef signed   __int8  int8_t;
typedef unsigned __int8  uint8_t;
typedef signed   __int16 int16_t;
typedef unsigned __int16 uint16_t;
typedef signed   __int32 int32_t;
typedef unsigned __int32 uint32_t;
typedef signed   __int64 int64_t;
typedef unsigned __int64 uint64_t;
#endif

#endif