mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-06-08 20:19:33 -04:00
11 lines
190 B
C
11 lines
190 B
C
#ifndef _IN_BOOT_INIT_H
|
|
#define _IN_BOOT_INIT_H
|
|
#include <ultra64.h>
|
|
|
|
void init(void);
|
|
s32 osGetMemSize(void);
|
|
void *allocateStack(s32 threadid, s32 size);
|
|
void mainproc(void *arg);
|
|
|
|
#endif
|