X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=backend.h;h=e2b967b0c2132896a2f00a6aaed1de30d2ec26ca;hb=9d5cf883b49ff08738e437514a4d0eb978c23647;hp=effe385db929b5329a1f4900ba0e1e762b11b4fe;hpb=671b4c9fb4a307e0caaec84408afefa455901cca;p=xboard.git diff --git a/backend.h b/backend.h index effe385..e2b967b 100644 --- a/backend.h +++ b/backend.h @@ -70,11 +70,17 @@ #else /* place holder * or dummy types for other compiler + * [HGM] seems that -mno-cygwin comple needs %I64? */ #define u64 unsigned long long #define s64 signed long long - #define u64Display "%llu" - #define s64Display "%lld" + #ifdef USE_I64 + #define u64Display "%I64u" + #define s64Display "%I64d" + #else + #define u64Display "%llu" + #define s64Display "%lld" + #endif #define u64Const(c) (c ## ULL) #define s64Const(c) (c ## LL) #endif @@ -132,6 +138,8 @@ int SaveGameToFile P((char *filename, int append)); int LoadPosition P((FILE *f, int n, char *title)); int ReloadPosition P((int offset)); int SavePosition P((FILE *f, int dummy, char *dummy2)); +int DrawSeekGraph P(()); +int SeekGraphClick P((ClickType click, int x, int y, int moving)); void EditPositionEvent P((void)); void FlipViewEvent P((void)); void MachineWhiteEvent P((void));