G
Guest
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
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