1 /* 2 * Copyright (C) 2015-2020 Alibaba Group Holding Limited 3 */ 4 5 #ifndef __UVOICE_INIT_H__ 6 #define __UVOICE_INIT_H__ 7 8 /** @defgroup uvoice_init_api uvoice_init 9 * @ingroup uvoice_aos_api 10 * @{ 11 */ 12 13 /** 14 * Init the uvoice module. 15 * 16 * @retrun 0 on success, otherwise will be failed. 17 */ 18 int uvoice_init(void); 19 20 /** 21 * DeInit the uvoice module. 22 * 23 * @retrun 0 on success, otherwise will be failed. 24 */ 25 int uvoice_free(void); 26 27 /** 28 * @} 29 */ 30 31 #endif /* __UVOICE_INIT_H__ */ 32 33