【发布时间】:2017-03-05 04:58:56
【问题描述】:
请指教,怎么了?
在.h
中struct {
uint8_t time;
uint8_t type;
uint8_t phase;
uint8_t status;
} Raw_data_struct;
typedef struct Raw_data_struct Getst_struct;
void Getst_resp(Getst_struct Data);
在.c
中void Getst_resp(Getst_struct Data) //Here Error: incomplete type is not allowed
{
};
【问题讨论】:
标签: c data-structures incomplete-type