mirror of
https://github.com/encounter/aurora.git
synced 2026-07-09 18:19:33 -07:00
12009bbd7b
* Remaining headers needed for TP to build * Rider's "Unversioned Files" will keep trolling me * Remove TP-specific OSReport functions
22 lines
374 B
C
22 lines
374 B
C
#ifndef _DOLPHIN_OSTIMER_H_
|
|
#define _DOLPHIN_OSTIMER_H_
|
|
|
|
#include <dolphin/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef void (*OSTimerCallback)(void);
|
|
|
|
OSTimerCallback OSSetTimerCallback(OSTimerCallback callback);
|
|
void OSInitTimer(u32 time, u32 mode);
|
|
void OSStartTimer(void);
|
|
void OSStopTimer(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _DOLPHIN_OSTIMER_H_
|