17 lines
277 B
C
17 lines
277 B
C
|
|
#ifndef __AI_INTERACTION_H__
|
|
#define __AI_INTERACTION_H__
|
|
|
|
#include "typedef.h"
|
|
#include "app_config.h"
|
|
|
|
void ai_interaction_init(void);
|
|
|
|
int ai_interaction_rec_start(void);
|
|
int ai_interaction_rec_stop(void);
|
|
|
|
void ai_interaction_release(void);
|
|
|
|
#endif//__AI_INTERACTION_H__
|
|
|