controller_core.h 346 B

12345678910111213
  1. #ifndef __IDLE_AGENT_H__
  2. #define __IDLE_AGENT_H__
  3. #include "variables.h"
  4. #ifndef PLAT_LINUX
  5. void idle_agent_actions(char scen_directory[SCEN_DIR_SIZE], char scen_num[SCEN_NUM_SIZE]);
  6. #else
  7. void idle_agent_actions(char scen_directory[SCEN_DIR_SIZE], char scen_num[SCEN_NUM_SIZE], int Selfopt_Radius, int Max_SelfOpt_Interval_MS);
  8. #endif
  9. #endif