1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-21 12:54:51 +00:00
oot/include/ultra64/time.h

18 lines
343 B
C
Raw Normal View History

#ifndef ULTRA64_TIME_H
#define ULTRA64_TIME_H
2020-03-17 04:31:30 +00:00
#include "message.h"
2020-03-17 04:31:30 +00:00
typedef u64 OSTime;
typedef struct OSTimer {
/* 0x00 */ struct OSTimer* next;
/* 0x04 */ struct OSTimer* prev;
/* 0x08 */ OSTime interval;
/* 0x10 */ OSTime value;
/* 0x18 */ OSMesgQueue* mq;
/* 0x1C */ OSMesg msg;
} OSTimer; // size = 0x20
2020-03-17 04:31:30 +00:00
#endif