Hello all
I trying to compil PS and have a problem.
When compiling the psutil modul, Visual return this kind of error
d:\My Projects\mmorpg\planeshift\CS\include\csutil\snprintf.h(18): error C2144: syntax error : 'int' should be preceded by ';'
d:\My Projects\mmorpg\planeshift\CS\include\csutil\snprintf.h(20): error C2146: syntax error : missing ';' before identifier 'CS_GNUC_PRINTF'
d:\My Projects\mmorpg\planeshift\CS\include\csutil\snprintf.h(20): error C2501: 'CS_GNUC_PRINTF' : missing storage-class or type specifiers
d:\My Projects\mmorpg\planeshift\CS\include\csutil\snprintf.h(20): error C2078: too many initializers
The code for this error is in the snprintf.h :
extern CS_CRYSTALSPACE_EXPORT int cs_snprintf (char* buf, size_t bufSize,
const char* format, /*args*/ ...)
CS_GNUC_PRINTF (3, 4);
I think it is an include problem but don't find it... an idea ?
PS : sorry for my bad english ;o)