mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-05 02:24:16 +01:00
32 lines
478 B
C
32 lines
478 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
|
|
|
|
/** @} */
|