You've already forked sm64coopdx
mirror of
https://github.com/izzy2lost/sm64coopdx.git
synced 2026-03-26 16:56:02 -07:00
75bb9b7912
* Refresh 13 Co-authored-by: n64 <n64>
28 lines
460 B
C
28 lines
460 B
C
#ifndef _ULTRA64_TIME_H_
|
|
#define _ULTRA64_TIME_H_
|
|
|
|
#include <PR/ultratypes.h>
|
|
#include <PR/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
|