27 lines
514 B
C
27 lines
514 B
C
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
|
|
#define ACOMP_ERR_OK 0
|
|
#define ACOMP_ERR_NOT_FOUND -1
|
|
#define ACOMP_ERR_NO_MEM -2
|
|
#define ACOMP_ERR_INVALID_ARG -3
|
|
#define ACOMP_ERR_TIMEOUT -4
|
|
#define ACOMP_ERR_INVALID_STATE -5
|
|
#define ACOMP_ERR_BUSY -6
|
|
#define ACOMP_ERR_NOT_PERMITTED -7
|
|
#define ACOMP_ERR_NOT_SUPPORTED -8
|
|
#define ACOMP_ERR_UNKNOWN -9
|
|
#define ACOMP_ERR_CREATE_STREAM_FAILED -10
|
|
|
|
|
|
|
|
|
|
|