Possible Duplicate:
typedef stuct problem in C
Hello there
I am facing I have defined I a structure in a C header file:
typedef struct iRecActive{
char iRecSID[32];
unsigned char RecStatus;
int curSel;
}iRecAcitve_t;
but when I use the same structure in another file, the compiler gives some error:
error C2275: 'iRecActive_t' : illegal use of this type as an expression d:\project\project original\mirec2pc v1.0\httpapp\httpapplication.h(15) : see declaration of 'iRecActive_t'
I would be obliged if anyone could help me out
Regards
Umair