summaryrefslogtreecommitdiff
path: root/mpqlib-stdint.h
blob: 1dc4e2dc0e4b8aa6a106aa74a07eb470ba4a9a9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __STD_INT_H_
#define __STD_INT_H_

#ifdef WIN32
typedef unsigned char uint8_t;
typedef unsigned short int uint16_t;
typedef signed long int int32_t;
typedef unsigned long int uint32_t;
typedef unsigned __int64 uint64_t;
#else
#include <stdint.h>
#endif

#endif