miben
Mar 15th, 2002, 04:02 PM
I have 2 structures that contain each other..
typedef struct tagUSER {
long lName
GROUP group
const char *lpszPass
}; USER
typdef struct tagGROUP {
long lID
USER user
}; GROUP
It doesnt work. Is there a way to forward the declaration for the
structures so they can see each other?
typedef struct tagUSER {
long lName
GROUP group
const char *lpszPass
}; USER
typdef struct tagGROUP {
long lID
USER user
}; GROUP
It doesnt work. Is there a way to forward the declaration for the
structures so they can see each other?