【发布时间】:2013-04-12 15:34:48
【问题描述】:
这是我的头文件:
typedef int* Arg;
typedef int* Args[];
typedef int** ArgsList[];
typedef int (*ProcessStart)(Args);
typedef struct PCBEntry{
ProcessStart proc;
Args args;
int pid;
int curr_proc;
int sched_info;
int pc;
} PCBEntry;
我在结构中的Args argsline 上收到错误,我不知道为什么。
【问题讨论】:
标签: c struct header-files keil