mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
22 lines
297 B
C
22 lines
297 B
C
#ifndef _WIILIGHT_H_
|
|
#define _WIILIGHT_H_
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void WIILIGHT_Init();
|
|
void WIILIGHT_TurnOn();
|
|
int WIILIGHT_GetLevel();
|
|
int WIILIGHT_SetLevel(int level);
|
|
|
|
void WIILIGHT_Toggle();
|
|
void WIILIGHT_TurnOff();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|