Merge pull request #728 from pcercuei/libretro-wiiu-v4
[pcsx_rearmed.git] / deps / libretro-common / include / libchdr / coretypes.h
CommitLineData
3719602c
PC
1#ifndef __CORETYPES_H__
2#define __CORETYPES_H__
3
4#include <stdint.h>
5#include <stdio.h>
6#include <retro_miscellaneous.h>
7
8typedef uint64_t UINT64;
9#ifndef OSD_CPU_H
10typedef uint32_t UINT32;
11typedef uint16_t UINT16;
12typedef uint8_t UINT8;
13#endif
14
15typedef int64_t INT64;
16#ifndef OSD_CPU_H
17typedef int32_t INT32;
18typedef int16_t INT16;
19typedef int8_t INT8;
20#endif
21
22#endif