mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
switch: Fix documentation comments
This commit is contained in:
parent
4b2d111859
commit
5d95e17f9b
@ -1,3 +1,9 @@
|
|||||||
|
/**
|
||||||
|
* @file audctl.h
|
||||||
|
* @brief Audio Control IPC wrapper.
|
||||||
|
* @author plutoo
|
||||||
|
* @copyright libnx Authors
|
||||||
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
@ -51,14 +57,14 @@ Result audctlGetOutputModeSetting(AudioOutputMode* mode_out, AudioTarget target)
|
|||||||
Result audctlSetOutputModeSetting(AudioTarget target, AudioOutputMode mode);
|
Result audctlSetOutputModeSetting(AudioTarget target, AudioOutputMode mode);
|
||||||
Result audctlSetOutputTarget(AudioTarget target);
|
Result audctlSetOutputTarget(AudioTarget target);
|
||||||
Result audctlSetInputTargetForceEnabled(bool enable);
|
Result audctlSetInputTargetForceEnabled(bool enable);
|
||||||
Result audctlSetHeadphoneOutputLevelMode(AudioHeadphoneOutputLevelMode mode);
|
Result audctlSetHeadphoneOutputLevelMode(AudioHeadphoneOutputLevelMode mode); ///< [3.0.0+]
|
||||||
Result audctlGetHeadphoneOutputLevelMode(AudioHeadphoneOutputLevelMode* mode_out);
|
Result audctlGetHeadphoneOutputLevelMode(AudioHeadphoneOutputLevelMode* mode_out); ///< [3.0.0+]
|
||||||
Result audctlAcquireAudioVolumeUpdateEventForPlayReport(Event* event_out);
|
Result audctlAcquireAudioVolumeUpdateEventForPlayReport(Event* event_out); ///< [3.0.0+]
|
||||||
Result audctlAcquireAudioOutputDeviceUpdateEventForPlayReport(Event* event_out);
|
Result audctlAcquireAudioOutputDeviceUpdateEventForPlayReport(Event* event_out); ///< [3.0.0+]
|
||||||
Result audctlGetAudioOutputTargetForPlayReport(AudioTarget* target_out);
|
Result audctlGetAudioOutputTargetForPlayReport(AudioTarget* target_out); ///< [3.0.0+]
|
||||||
Result audctlNotifyHeadphoneVolumeWarningDisplayedEvent(void);
|
Result audctlNotifyHeadphoneVolumeWarningDisplayedEvent(void); ///< [3.0.0+]
|
||||||
Result audctlSetSystemOutputMasterVolume(float volume);
|
Result audctlSetSystemOutputMasterVolume(float volume); ///< [4.0.0+]
|
||||||
Result audctlGetSystemOutputMasterVolume(float* volume_out);
|
Result audctlGetSystemOutputMasterVolume(float* volume_out); ///< [4.0.0+]
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
};
|
};
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
/**
|
||||||
|
* @file audctl.h
|
||||||
|
* @brief Audio Recorder IPC wrapper.
|
||||||
|
* @author plutoo
|
||||||
|
* @copyright libnx Authors
|
||||||
|
*/
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
Loading…
Reference in New Issue
Block a user