summaryrefslogtreecommitdiff
path: root/Source/Library/Common/types.h
blob: ca6f73d707a589b4f8cf5b24a868eb24ea34057a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef DEF_TYPES_WTF_H
#define DEF_TYPES_WTF_H

//This file defines base types. It's made to be used also by C programs

typedef unsigned int		addr_t;
typedef unsigned long long	u64int;
typedef unsigned int		u32int;
typedef unsigned short		u16int;
typedef unsigned char		u8int;
typedef long long	s64int;
typedef int 		s32int;
typedef short		s16int;
typedef char		s8int;

#define U64 unsigned long long
#define S64 long long

#endif