Book.c did not include config.h, and thus missed the redefinition of
snprintf (which is not known in MSVC). The use of 'inline' in parser.c
also needed an MSVC redefinition, now added to winboard/config.h.
* ------------------------------------------------------------------------
*/
+#include "config.h"
+
#include <stdio.h>
#include <string.h>
#include <time.h>
\r
#ifdef _MSC_VER\r
#define snprintf _snprintf\r
+#define inline __inline\r
#if _MSC_VER < 1500\r
#define vsnprintf _vsnprintf\r
#endif\r