1 /* 2 * Copyright (C) 2021-2023 Alibaba Group Holding Limited 3 */ 4 5 #ifndef _KWS_ENGINE_H_ 6 #define _KWS_ENGINE_H_ 7 8 #define KWS_NAME "kws" 9 10 typedef void *kws_engine_cb_t; 11 12 typedef struct { 13 int8_t channel; 14 } kws_engine_config_t; 15 #endif // _KWS_ENGINE_H_ 16