mirror of
https://github.com/zeldaret/ss
synced 2026-05-23 23:05:20 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
24 lines
563 B
C
24 lines
563 B
C
#ifndef RVL_SDK_OS_STATETM_H
|
|
#define RVL_SDK_OS_STATETM_H
|
|
#include "common.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef void (*OSStateCallback)(void);
|
|
|
|
OSStateCallback OSSetResetCallback(OSStateCallback callback);
|
|
OSStateCallback OSSetPowerCallback(OSStateCallback callback);
|
|
BOOL __OSInitSTM(void);
|
|
void __OSShutdownToSBY(void);
|
|
void __OSHotReset(void);
|
|
BOOL __OSGetResetButtonStateRaw(void);
|
|
s32 __OSSetVIForceDimming(u32 arg0, u32 arg1, u32 arg2);
|
|
s32 __OSSetIdleLEDMode(u32 mode);
|
|
s32 __OSUnRegisterStateEvent(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|