X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=backend.h;h=bd52212fc91544b8a8049a8f2112ebd56a1071fc;hb=c3790f0d51cada3077e31626098a0de1f7c52df3;hp=41f8da1c15e186fdc7c2d6f0ccaadc6088a125d2;hpb=b1f2ba8082d89aeefcf0acc7007d629b734e5f4c;p=xboard.git diff --git a/backend.h b/backend.h index 41f8da1..bd52212 100644 --- a/backend.h +++ b/backend.h @@ -174,21 +174,42 @@ extern GameInfo gameInfo; #define ICS_ICC 1 #define ICS_FICS 2 #define ICS_CHESSNET 3 /* not really supported */ -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 - +int ics_type; + +/* unsigned int 64 for engine nodes work and display */ +#ifdef WIN32 + /* I don't know the name for this type of other compiler + * If it not work, just modify here + * This is for MS Visual Studio + */ + #ifdef _MSC_VER + #define u64 unsigned __int64 + #define s64 signed __int64 + #define u64Display "%I64u" + #define s64Display "%I64d" + #define u64Const(c) (c ## UI64) + #define s64Const(c) (c ## I64) + #else + /* place holder + * or dummy types for other compiler + */ + #define u64 unsigned long long + #define s64 signed long long + #define u64Display "%I64u" + #define s64Display "%I64d" + #define u64Const(c) (c ## ull) + #define s64Const(c) (c ## ll) + #endif +#else + /* GNU gcc */ + #define u64 unsigned long long + #define s64 signed long long + #define u64Display "%llu" + #define s64Display "%lld" + #define u64Const(c) (c ## ull) + #define s64Const(c) (c ## ll) +#endif + /* pgntags.c prototypes */