I have 2 structures that contain each other..
Code:
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?