编译时一直报错,提示error: identifier “” is undefined,检查了下头文件引用和拼写,都正确……
看一下基本代码(只列出涉及的代码)
=====================================
【ring.c】
#include "ring.h"
【ring.h】
#include "iap.h" //【1】
typedef struct DataRing_Type{
……
}DataRing;
=====================================
【iap.h】
//编译时在此处一直报错,error: #20: identifier “DataRing” is undefined
#include "ring.h"
void IAP_PutData(DataRing *dataRing); //编译时在此处一直报错
=====================================
解决方法:
把【ring.h】中
【1】
处的代码移到【ring.c】就不报错了,这应该是头文件循环引用造成的
=====================================
【ring.c】
#include "ring.h"
#include "iap.h" //【1】
版权声明:本文为neo_Wordsworth原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。