RetroArch
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
+
Variables
a
b
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
+
Typedefs
a
b
c
d
e
f
g
i
l
m
o
p
q
r
s
t
u
v
x
+
Enumerations
a
b
c
d
e
f
g
i
k
l
m
o
p
q
r
s
t
v
+
Enumerator
a
b
c
d
e
f
g
i
k
l
m
o
p
r
s
t
u
x
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
Enumerations
+
Enumerator
a
b
c
d
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Properties
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Related Functions
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Á
á
é
Ά
Ή
Α
Δ
Ε
Κ
Ο
Π
Σ
Ω
α
ε
θ
π
В
И
К
О
П
У
а
в
д
з
и
к
о
п
с
ф
ч
я
オ
キ
ス
チ
デ
レ
上
下
中
右
启
啟
回
実
屏
左
已
巻
支
显
次
聲
过
鍵
需
顯
게
구
너
넷
도
동
되
레
리
버
변
비
사
성
쉐
시
실
애
연
오
이
입
잘
조
죄
중
지
참
코
키
필
화
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Á
á
Ά
Ή
Α
Ε
Κ
Ο
К
П
а
д
з
к
オ
ス
デ
レ
上
下
中
右
启
啟
回
屏
左
巻
支
显
次
聲
顯
너
넷
동
레
버
비
시
잘
중
지
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
é
Δ
Ε
Κ
Π
Σ
Ω
α
ε
θ
π
В
И
К
О
У
в
д
з
и
к
о
п
с
ф
ч
я
キ
チ
実
已
过
鍵
需
게
구
도
되
리
변
사
성
쉐
시
실
애
연
오
이
입
조
죄
참
코
키
필
화
+
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
+
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
wiiu
include
wiiu
types.h
Go to the documentation of this file.
1
#pragma once
2
#include <stdint.h>
3
#include <stdbool.h>
4
5
#ifndef TRUE
6
#define TRUE 1
7
#endif
8
9
#ifndef FALSE
10
#define FALSE 0
11
#endif
12
13
typedef
int
BOOL
;
14
15
typedef
uint8_t
u8
;
16
typedef
uint16_t
u16
;
17
typedef
uint32_t
u32
;
18
typedef
uint64_t
u64
;
19
20
typedef
int8_t
s8
;
21
typedef
int16_t
s16
;
22
typedef
int32_t
s32
;
23
typedef
int64_t
s64
;
24
25
typedef
volatile
u8
vu8
;
26
typedef
volatile
u16
vu16
;
27
typedef
volatile
u32
vu32
;
28
typedef
volatile
u64
vu64
;
29
30
typedef
volatile
s8
vs8
;
31
typedef
volatile
s16
vs16
;
32
typedef
volatile
s32
vs32
;
33
typedef
volatile
s64
vs64
;
34
35
typedef
float
f32
;
36
typedef
double
f64
;
37
38
typedef
volatile
float
vf32
;
39
typedef
volatile
double
vf64
;
40
41
#define countof(array) (sizeof(array) / sizeof(*array))
u8
uint8_t u8
Definition:
types.h:15
s32
int32_t s32
32bit signed integer
Definition:
gctypes.h:24
vu8
volatile u8 vu8
Definition:
types.h:25
vu16
volatile u16 vu16
Definition:
types.h:26
u64
uint64_t u64
Definition:
types.h:18
vs32
volatile s32 vs32
Definition:
types.h:32
vu64
volatile u64 vu64
Definition:
types.h:28
s8
int8_t s8
8bit signed integer
Definition:
gctypes.h:22
s16
int16_t s16
Definition:
types.h:21
vs64
volatile s64 vs64
Definition:
types.h:33
s8
int8_t s8
Definition:
types.h:20
vs16
volatile s16 vs16
Definition:
types.h:31
u16
uint16_t u16
16bit unsigned integer
Definition:
gctypes.h:18
f64
double f64
Definition:
types.h:36
u16
uint16_t u16
Definition:
types.h:16
int16_t
signed short int16_t
Definition:
stdint.h:122
s32
int32_t s32
Definition:
types.h:22
int32_t
signed int int32_t
Definition:
stdint.h:123
s64
int64_t s64
Definition:
types.h:23
s16
int16_t s16
16bit signed integer
Definition:
gctypes.h:23
vf32
volatile float vf32
Definition:
types.h:38
u64
uint64_t u64
64bit unsigned integer
Definition:
gctypes.h:20
u32
uint32_t u32
Definition:
types.h:17
vf64
volatile double vf64
Definition:
types.h:39
vu32
volatile u32 vu32
Definition:
types.h:27
BOOL
int BOOL
Definition:
types.h:13
int64_t
signed __int64 int64_t
Definition:
stdint.h:135
vs8
volatile s8 vs8
Definition:
types.h:30
f32
float f32
Definition:
types.h:35
u8
uint8_t u8
8bit unsigned integer
Definition:
gctypes.h:17
u32
uint32_t u32
32bit unsigned integer
Definition:
gctypes.h:19
uint16_t
unsigned short uint16_t
Definition:
stdint.h:125
uint64_t
unsigned __int64 uint64_t
Definition:
stdint.h:136
uint8_t
unsigned char uint8_t
Definition:
stdint.h:124
uint32_t
unsigned int uint32_t
Definition:
stdint.h:126
s64
int64_t s64
64bit signed integer
Definition:
gctypes.h:25
int8_t
signed char int8_t
Definition:
stdint.h:121
Generated by
1.8.15