Files
ac-decomp/include/libultra/os_timer.h
T
2024-11-01 16:01:19 +01:00

23 lines
422 B
C

#ifndef LIBULTRA_OS_TIMER_H
#define LIBULTRA_OS_TIMER_H
#include "types.h"
#include "dolphin/os/OSTime.h"
#include "dolphin/os/OSTimer.h"
#include "dolphin/os/OSMessage.h"
#ifdef __cplusplus
extern "C" {
#endif
extern int osSetTimer(OSTimer* t, OSTime countdown, OSTime interval, OSMessageQueue* mq, OSMessage msg);
extern void osStopTimerAll(void);
extern OSTimer* __osTimerList;
#ifdef __cplusplus
}
#endif
#endif