File size: 359 Bytes
87337b1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
#ifndef AI_AGENT_H
#define AI_AGENT_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdlib.h>
/* generate ai agent information */
void ai_agent_generate(void);
/* start ai agent */
void ai_agent_start(void);
/* ping ai agent to keepalive */
void ai_agent_ping(void);
/* stop ai agent */
void ai_agent_stop(void);
#ifdef __cplusplus
}
#endif
#endif |