X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=backend.h;h=41f8da1c15e186fdc7c2d6f0ccaadc6088a125d2;hb=b1f2ba8082d89aeefcf0acc7007d629b734e5f4c;hp=6bd84414eafff29183f3798307727ee7df5a88d7;hpb=4580857e579966193a58d3a55e105bf833cb641d;p=xboard.git diff --git a/backend.h b/backend.h index 6bd8441..41f8da1 100644 --- a/backend.h +++ b/backend.h @@ -174,8 +174,21 @@ extern GameInfo gameInfo; #define ICS_ICC 1 #define ICS_FICS 2 #define ICS_CHESSNET 3 /* not really supported */ -int ics_type; - +int ics_type; + +/* unsigned int 64 for engine nodes work and display */ +#define u64Display "%I64u" +#ifdef WIN32 + /* I don't know the name for this type of other compilers + * If it not work just added here + * Thats for MS Visual Studio + */ + #define u64 unsigned __int64 +#else + /* GNU gcc */ + #define u64 unsigned long long +#endif + /* pgntags.c prototypes */