aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/kernel/bs_stdint.h
blob: 7bdcf4c94968b95e6996f7c16b329ce5ae8bc7e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// TODO: Properly replace all game occurances that use these types with proper ScummVM types, and remove this file

#ifndef SWORD25_STDINT_H
#define SWORD25_STDINT_H

#include "common/scummsys.h"

typedef uint8 uint8_t;
typedef uint16 uint16_t;
typedef uint32 uint32_t;
typedef int8 int8_t;
typedef int16 int16_t;
typedef int32 int32_t;

typedef unsigned long long uint64_t;
typedef signed long long int64_t;
typedef unsigned long long uint64;
typedef signed long long int64;

#endif