mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-18 23:37:16 -05:00
Some checks failed
C/C++ CI / ubuntu-latest (push) Has been cancelled
`find . -regex '.*\.\(cpp\|hpp\|cu\|cuh\|c\|h\)' -exec clang-format -style=file -i {} \;`
32 lines
463 B
C
32 lines
463 B
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
/**
|
|
* \defgroup sndcore2_result Result
|
|
* \ingroup sndcore2
|
|
*
|
|
* @{
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
//! A value from enum AX_RESULT.
|
|
typedef int32_t AXResult;
|
|
|
|
enum AX_RESULT
|
|
{
|
|
AX_RESULT_SUCCESS = 0,
|
|
AX_RESULT_INVALID_DEVICE_TYPE = -1,
|
|
AX_RESULT_INVALID_DRC_VS_MODE = -13,
|
|
AX_RESULT_VOICE_IS_RUNNING = -18,
|
|
AX_RESULT_DELAY_TOO_BIG = -19,
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|