Included more files from the decomp.

This commit is contained in:
MeltyPlayer
2022-10-21 00:27:03 -05:00
parent 43cc7c9700
commit 7df97a3333
21 changed files with 3159 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#ifndef _ULTRA64_TIME_H_
#define _ULTRA64_TIME_H_
#include "ultratypes.h"
#include "os_message.h"
/* Types */
typedef struct OSTimer_str
{
struct OSTimer_str *next;
struct OSTimer_str *prev;
u64 interval;
u64 remaining;
OSMesgQueue *mq;
OSMesg *msg;
} OSTimer;
typedef u64 OSTime;
/* Functions */
OSTime osGetTime(void);
void osSetTime(OSTime time);
u32 osSetTimer(OSTimer *, OSTime, OSTime, OSMesgQueue *, OSMesg);
#endif