I have a VC++.net Win32 console application, however when I compile , I get
this error
error C2146: syntax error : missing ';' before identifier 'Length'
Explain...
Location pointed is
typedef struct _LIST
{
LPLINK Tail; //... List Tail pointer.
LPLINK Head; //... List Head pointer.
DWORD Length; //... List Length.
} LIST;
typedef LIST *LPLIST;
in List.h
Thanks,
a.a.cpp
Mihajlo Cvetanović - 03 Jun 2005 08:47 GMT
> error C2146: syntax error : missing ';' before identifier 'Length'
>
[quoted text clipped - 4 lines]
> DWORD Length; //... List Length.
> } LIST;
Maybe LPLINK, or DWORD, aren't defined at this time?