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

#ifdef _MSVC
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