mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-06-26 17:31:52 -04:00
14 lines
346 B
C
14 lines
346 B
C
#ifndef _IN_LIB_LIB_481E0_H
|
|
#define _IN_LIB_LIB_481E0_H
|
|
#include <ultra64.h>
|
|
#include "types.h"
|
|
|
|
void __osSetFpcCsr(void);
|
|
void osStartThread(OSThread *thread);
|
|
void osCreateMesgQueue(OSMesgQueue *mq, OSMesg *msgBuf, s32 count);
|
|
void osStopThread(OSThread *thread);
|
|
void osSetThreadPri(OSThread *thread, OSPri pri);
|
|
u32 osGetCount(void);
|
|
|
|
#endif
|