WiiFlow_Lite/portlibs/include/wiilight.h

22 lines
297 B
C
Raw Normal View History

2012-01-21 21:57:41 +01:00
#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