mirror of
https://github.com/switchbrew/libnx.git
synced 2025-07-04 02:22:15 +02:00
adjust docs
This commit is contained in:
parent
ab3513c6ae
commit
40199792cf
@ -9,9 +9,9 @@
|
|||||||
#include "../sf/service.h"
|
#include "../sf/service.h"
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
LblBacklightSwitchStatus_Disabled = 0,
|
LblBacklightSwitchStatus_Disabled = 0,
|
||||||
LblBacklightSwitchStatus_Enabled = 1,
|
LblBacklightSwitchStatus_Enabled = 1,
|
||||||
LblBacklightSwitchStatus_Enabling = 2,
|
LblBacklightSwitchStatus_Enabling = 2,
|
||||||
LblBacklightSwitchStatus_Disabling = 3
|
LblBacklightSwitchStatus_Disabling = 3
|
||||||
} LblBacklightSwitchStatus;
|
} LblBacklightSwitchStatus;
|
||||||
|
|
||||||
@ -49,10 +49,15 @@ Result lblDisableAutoBrightnessControl(void);
|
|||||||
Result lblIsAutoBrightnessControlEnabled(bool *out_value);
|
Result lblIsAutoBrightnessControlEnabled(bool *out_value);
|
||||||
|
|
||||||
Result lblSetAmbientLightSensorValue(float value);
|
Result lblSetAmbientLightSensorValue(float value);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @note Used internally by \ref appletGetAmbientLightSensorValue and \ref appletGetCurrentIlluminanceEx.
|
||||||
|
*/
|
||||||
Result lblGetAmbientLightSensorValue(bool *over_limit, float *lux);
|
Result lblGetAmbientLightSensorValue(bool *over_limit, float *lux);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @note Only available on [3.0.0+].
|
* @note Only available on [3.0.0+].
|
||||||
|
* @note Used internally by \ref appletIsIlluminanceAvailable.
|
||||||
*/
|
*/
|
||||||
Result lblIsAmbientLightSensorAvailable(bool *out_value);
|
Result lblIsAmbientLightSensorAvailable(bool *out_value);
|
||||||
|
|
||||||
@ -68,18 +73,18 @@ Result lblGetCurrentBrightnessSettingForVrMode(float *out_value);
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @note Only available on [3.0.0+].
|
* @note Only available on [3.0.0+].
|
||||||
* @note Used internally by am SetVrModeEnabled.
|
* @note Used internally by \ref appletSetVrModeEnabled.
|
||||||
*/
|
*/
|
||||||
Result lblEnableVrMode(void);
|
Result lblEnableVrMode(void);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @note Only available on [3.0.0+].
|
* @note Only available on [3.0.0+].
|
||||||
* @note Used internally by am SetVrModeEnabled.
|
* @note Used internally by \ref appletSetVrModeEnabled.
|
||||||
*/
|
*/
|
||||||
Result lblDisableVrMode(void);
|
Result lblDisableVrMode(void);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @note Only available on [3.0.0+].
|
* @note Only available on [3.0.0+].
|
||||||
* @note Used internally by am IsVrModeEnabled.
|
* @note Used internally by \ref appletIsVrModeEnabled.
|
||||||
*/
|
*/
|
||||||
Result lblIsVrModeEnabled(bool *out_value);
|
Result lblIsVrModeEnabled(bool *out_value);
|
||||||
|
Loading…
Reference in New Issue
Block a user