#ifndef _TASK_H_ #define _TASK_H_ #include "task.cfg.h" #define TASK_MAX_NUM (TASK_LAST_NUM + 1) typedef struct { int task_id; int task_status; int task_type; int task_time; int task_param[TASK_PARAM_NUM]; }task_t; #endif