Files
2023-04-29 08:28:32 -04:00

20 lines
356 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);
#ifdef __cplusplus
}
#endif
#endif