Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
Toggle main menu visibility
Main Page
Topics
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
l
m
o
p
q
r
s
t
u
w
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
o
p
q
r
s
t
u
w
Variables
a
b
c
d
e
f
g
h
j
l
m
p
s
w
Typedefs
Enumerations
Enumerator
c
e
o
t
u
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
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
i
j
m
o
p
r
s
t
u
v
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
o
p
q
r
s
t
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Related Symbols
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
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
▼
Twilight Princess
►
About
►
Topics
►
Namespaces
►
Classes
▼
Files
▼
File List
►
docs
►
include
▼
src
►
amcstubs
►
c
►
d
►
dolphin
►
f_ap
►
f_op
►
f_pc
►
JSystem
►
m_Do
►
odemuexi2
►
odenotstub
▼
PowerPC_EABI_Support
►
MetroTRK
▼
MSL
▼
MSL_C
▼
MSL_Common
▼
Include
►
abort_exit.h
►
alloc.h
►
ansi_files.h
►
ansi_fp.h
►
arith.h
►
buffer_io.h
►
char_io.h
►
cmath.h
►
critical_regions.h
cstring.h
►
ctype.h
►
direct_io.h
►
errno.h
►
extras.h
►
file_io.h
►
FILE_POS.h
►
float.h
►
limits.h
►
math.h
►
mbstring.h
►
mem_funcs.h
►
misc_io.h
►
printf.h
►
scanf.h
►
signal.h
►
stddef.h
stdio.h
stdlib.h
►
string.h
►
strtoul.h
►
wchar_io.h
►
Src
►
MSL_Common_Embedded
►
PPC_EABI
►
MSL_C++
►
Runtime
►
REL
►
SSystem
►
TRK_MINNOW_DOLPHIN
►
Z2AudioLib
►
DynamicLink.cpp
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Modules
Pages
Loading...
Searching...
No Matches
ansi_fp.h
Go to the documentation of this file.
1
#ifndef _MSL_COMMON_ANSI_FP_H
2
#define _MSL_COMMON_ANSI_FP_H
3
4
5
#define SIGDIGLEN 36
6
7
typedef
struct
decimal
{
8
char
sign
;
9
char
unk1
;
10
short
exp
;
11
struct
{
12
unsigned
char
length
;
13
unsigned
char
text
[36];
14
unsigned
char
unk41
;
15
}
sig
;
16
}
decimal
;
7
typedef
struct
decimal
{
…
};
17
18
typedef
struct
decform
{
19
char
style
;
20
char
unk1
;
21
short
digits
;
22
}
decform
;
18
typedef
struct
decform
{
…
};
23
24
/* void __ull2dec(decimal*, u64);
25
void __timesdec(decimal*, const decimal*, const decimal*);
26
void __str2dec(decimal*, const char*, short);
27
void __two_exp(decimal*, s32);
28
BOOL __equals_dec(const decimal*, const decimal*);
29
BOOL __less_dec(const decimal*, const decimal*);
30
void __minus_dec(decimal*, const decimal*, const decimal*);
31
void __num2dec_internal(decimal*, f64);
32
void __num2dec(const decform*, f64, decimal*);
33
f64 __dec2num(const decimal*); */
34
35
#endif
decimal
struct decimal decimal
decform
struct decform decform
decform
Definition
ansi_fp.h:18
decform::digits
short digits
Definition
ansi_fp.h:21
decform::unk1
char unk1
Definition
ansi_fp.h:20
decform::style
char style
Definition
ansi_fp.h:19
decimal
Definition
ansi_fp.h:7
decimal::exp
short exp
Definition
ansi_fp.h:10
decimal::text
unsigned char text[36]
Definition
ansi_fp.h:13
decimal::sign
char sign
Definition
ansi_fp.h:8
decimal::unk41
unsigned char unk41
Definition
ansi_fp.h:14
decimal::sig
struct decimal::@25 sig
decimal::length
unsigned char length
Definition
ansi_fp.h:12
decimal::unk1
char unk1
Definition
ansi_fp.h:9
src
PowerPC_EABI_Support
MSL
MSL_C
MSL_Common
Include
ansi_fp.h
Generated by
1.12.0