RetroArch
coretypes.h
Go to the documentation of this file.
1 #ifndef __CORETYPES_H__
2 #define __CORETYPES_H__
3 
4 #include <stdint.h>
5 #include <stdio.h>
6 #include <retro_miscellaneous.h>
7 
8 typedef uint64_t UINT64;
9 #ifndef OSD_CPU_H
10 typedef uint32_t UINT32;
11 typedef uint16_t UINT16;
12 typedef uint8_t UINT8;
13 #endif
14 
15 typedef int64_t INT64;
16 #ifndef OSD_CPU_H
17 typedef int32_t INT32;
18 typedef int16_t INT16;
19 typedef int8_t INT8;
20 #endif
21 
22 #endif
int16_t INT16
Definition: coretypes.h:18
int64_t INT64
Definition: coretypes.h:15
int8_t INT8
Definition: coretypes.h:19
uint64_t UINT64
Definition: coretypes.h:8
int32_t INT32
Definition: coretypes.h:17
signed short int16_t
Definition: stdint.h:122
signed int int32_t
Definition: stdint.h:123
uint32_t UINT32
Definition: coretypes.h:10
signed __int64 int64_t
Definition: stdint.h:135
uint16_t UINT16
Definition: coretypes.h:11
unsigned short uint16_t
Definition: stdint.h:125
unsigned __int64 uint64_t
Definition: stdint.h:136
unsigned char uint8_t
Definition: stdint.h:124
unsigned int uint32_t
Definition: stdint.h:126
signed char int8_t
Definition: stdint.h:121
uint8_t UINT8
Definition: coretypes.h:12