What was ur IDE before and now ?
Did u simply try changing the name by 1 letter to see if things improve ?
New compilers don't allow u to define a var name then redefine that same name using typedef.
If this doesnt help can u show some relevant source code?
typedefstruct CellFile
{
DWORD dwVersion;
struct {
WORD dwFlags;
BYTE mylastcol;
BYTE mytabno:1;
};
DWORD eFormat;
DWORD termination;
DWORD numdirs;
DWORD numcells;
GfxCell *cells[1];
} *LPCELLFILE; //usually with a LPCELL struct there too so u can have a pointer to the struct if need be...