#ifndef PR_OS_TIME_H #define PR_OS_TIME_H #include "ultratypes.h" #include "os_message.h" typedef u64 OSTime; typedef struct OSTimer_s { /* 0x00 */ struct OSTimer_s* next; /* 0x04 */ struct OSTimer_s* prev; /* 0x08 */ OSTime interval; /* 0x10 */ OSTime value; /* 0x18 */ OSMesgQueue* mq; /* 0x1C */ OSMesg msg; } OSTimer; // size = 0x20 OSTime osGetTime(void); void osSetTime(OSTime ticks); s32 osSetTimer(OSTimer* t, OSTime value, OSTime interval, OSMesgQueue* mq, OSMesg msg); s32 osStopTimer(OSTimer* t); #endif