MSVISUAL 6

New Member
Joined
Mar 29, 2004
Messages
26
Best answers
0
Anyone know what his means
C: \SDK\Single-Player Source\dlls\client.cpp(371) : error C2447: missing function header (old-style formal list?)

I was changing some code and got this
 
New Member
Joined
Jul 4, 2003
Messages
312
Best answers
0
i am no coding master but you would be missing some sort of header.... its been i while since i reviewed coding so i couldnt tell you
 
New Member
Joined
Nov 24, 2001
Messages
692
Best answers
0
Go to your local library, get a book about C++ and work through it. Then try touching the SDK again.
 

IN

New Member
Joined
Feb 13, 2004
Messages
41
Best answers
0
Maybe you put ';' after the function like:
void TheFUnction(int smth);
{

}

But the idea about the book is really good ;)
 
New Member
Joined
Apr 27, 2004
Messages
10
Best answers
0
IN got it. That's the reason that error occurs. Make sure you dont put the semicolon operator after a function header unless it's a declaration. =\
 

Users who are viewing this thread

Top Bottom