Start decompiling some code

This commit is contained in:
gamemasterplc 2023-11-23 08:42:06 -06:00
parent 2e79185e91
commit 41f0ffb565
5 changed files with 196 additions and 12 deletions

112
src/game/process.c Normal file
View file

@ -0,0 +1,112 @@
#include "common.h"
#include "dolphin/os.h"
void HuPrcInit()
{
}
Process *HuPrcCreate(void (*func)(void), u16 prio, s32 stack_size, s32 extra_size)
{
return NULL;
}
void HuPrcChildLink()
{
}
void HuPrcChildUnlink()
{
}
void HuPrcChildCreate()
{
}
void HuPrcChildWatch()
{
}
void HuPrcCurrentGet()
{
}
void HuPrcKill()
{
}
void HuPrcChildKill()
{
}
void HuPrcEnd()
{
}
void HuPrcSleep(s32 time)
{
}
void HuPrcVSleep()
{
}
void HuPrcWakeup()
{
}
void HuPrcDestructorSet2()
{
}
void HuPrcDestructorSet()
{
}
void HuPrcCall()
{
}
void HuPrcMemAlloc()
{
}
void HuPrcMemFree()
{
}
void HuPrcSetStat()
{
}
void HuPrcResetStat()
{
}
void HuPrcAllPause()
{
}
void HuPrcAllUPause()
{
}