couple of bootDll funcs

This commit is contained in:
Rainchus 2023-11-21 08:06:07 -06:00
parent e6481709b4
commit a790e79022
5 changed files with 157 additions and 7 deletions

View file

@ -9,4 +9,10 @@ typedef struct UnkOvl {
s32 unk8;
} UnkOvl;
typedef struct Vec3f {
f32 x;
f32 y;
f32 z;
} Vec3f;
#endif

View file

@ -5,13 +5,17 @@
#include "common_structs.h"
void OSReport(const char * format, ...);
void *HuPrcCreate(void (*), s32, s32, s32);
void* HuPrcCreate(void (*), s32, s32, s32);
void Hu3DBGColorSet(u8, u8, u8);
void Hu3DCameraCreate(s16);
void Hu3DCameraPerspectiveSet(s16, f32, f32, f32, f32);
void Hu3DCameraViewportSet(s16, f32, f32, f32, f32, f32, f32);
void omOvlHisChg(s32, s32, s32, s32);
UnkOvl* omOvlHisGet(s32);
void * omInitObjMan(s32, s32);
void* omInitObjMan(s32, s32);
void fn_80044920(s16);
void fn_80045F74(s16, s32);
s32 fn_800578E4(void);
void fn_1_26C(void);
#endif