mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
23 lines
422 B
C
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
|