mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
15 lines
279 B
C
15 lines
279 B
C
/**
|
|
* @file lbl.h
|
|
* @brief LBL service IPC wrapper.
|
|
* @author SciresM
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include "../types.h"
|
|
|
|
Result lblInitialize(void);
|
|
void lblExit(void);
|
|
|
|
Result lblSwitchBacklightOn(u64 fade_time);
|
|
Result lblSwitchBacklightOff(u64 fade_time);
|