add some header files

This commit is contained in:
Rainchus 2023-11-21 06:16:08 -06:00
parent 060f1a1d28
commit e6481709b4
4 changed files with 55 additions and 1 deletions

17
include/functions.h Normal file
View file

@ -0,0 +1,17 @@
#ifndef _FUNCTIONS_H_
#define _FUNCTIONS_H_
#include "types.h"
#include "common_structs.h"
void OSReport(const char * format, ...);
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);
#endif