Paste up the lines in the 1000's range, I'll take a look.
..\src\controlpanel\controlpanel.cpp(1627) : error C2001: newline in constant
..\src\controlpanel\controlpanel.cpp(1628) : error C2146: syntax error : missing ')' before identifier 'Menu'
..\src\controlpanel\controlpanel.cpp(1682) : error C2601: 'CPanel::GossipEnd' : local function definitions are illegal
..\src\controlpanel\controlpanel.cpp(51): this line contains a '{' which has not yet been matched
..\src\controlpanel\controlpanel.cpp(1687) : error C2601: 'SetupCPanel' : local function definitions are illegal
..\src\controlpanel\controlpanel.cpp(51): this line contains a '{' which has not yet been matched
..\src\controlpanel\controlpanel.cpp(1691) : fatal error C1075: end of file found before the left brace '{' at '..\src\controlpanel\controlpanel.cpp(51)' was matched
Setup.cpp
The bolded lines are happening because there is a function starting at line 51 that doesn't have a closing brace... From the looks of the errors, it could belong around 1681 (that would make it a HUGE function!). If you can figure out where that function is supposed to end and add a closing curly brace, you should fix up a few of the bugs, the rest may also be symptoms of that... couldn't tell you without source
