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