Files
tp/include/revolution/os/OSPlayTime.h
T
TakaRikka 139722c731 shieldD revolution OS mostly done (#2892)
* begin revolution sdk setup

* wii rvl test

* revo OS mostly done for shieldD
2025-11-30 08:59:04 +02:00

26 lines
439 B
C

#ifndef _REVOLUTION_OSPLAYTIME_H_
#define _REVOLUTION_OSPLAYTIME_H_
#include <revolution/types.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
OSPLAYTIME_PERMANENT = 0,
OSPLAYTIME_LIMITED = 1,
OSPLAYTIME_LIMITED_LAUNCH = 4,
OSPLAYTIME_OTHER = 9
} __OSPlayTimeType;
typedef void (*OSPlayTimeCallbackFunc)(void);
BOOL OSPlayTimeIsLimited(void);
#ifdef __cplusplus
}
#endif
#endif