Shipwright/libultraship/libultraship/Lib/Fast3D/U64/PR/ultra64/time.h
M4xw d24c8453db git subrepo clone https://github.com/HarbourMasters/libultraship.git
subrepo:
  subdir:   "libultraship"
  merged:   "a484cda98"
upstream:
  origin:   "https://github.com/HarbourMasters/libultraship.git"
  branch:   "main"
  commit:   "a484cda98"
git-subrepo:
  version:  "0.4.1"
  origin:   "???"
  commit:   "???"
2022-03-22 02:52:44 +01:00

18 lines
343 B
C

#ifndef ULTRA64_TIME_H
#define ULTRA64_TIME_H
#include "message.h"
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
#endif