SS4Goku S New Member Joined Mar 29, 2004 Messages 26 Best answers 0 Apr 11, 2004 #1 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
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
EfFeCt E New Member Joined Jul 4, 2003 Messages 312 Best answers 0 Apr 11, 2004 #2 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
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
harSens New Member Joined Nov 24, 2001 Messages 692 Best answers 0 Apr 11, 2004 #3 Go to your local library, get a book about C++ and work through it. Then try touching the SDK again.
IN I New Member Joined Feb 13, 2004 Messages 41 Best answers 0 Apr 26, 2004 #4 Maybe you put ';' after the function like: void TheFUnction(int smth); { } But the idea about the book is really good
Maybe you put ';' after the function like: void TheFUnction(int smth); { } But the idea about the book is really good
just2n J New Member Joined Apr 27, 2004 Messages 10 Best answers 0 Apr 27, 2004 #5 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. =\
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. =\