X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=backend.h;h=456a0e38c4a5a13273ef377bda79971381a24af6;hb=f811916dade93eae2bcff85f397a7b78407b5376;hp=29773a8743263a6f91135c2896a02ff052f7b585;hpb=59e3a9e715601e65d6a208b2bf8fc0b9c7c0fee8;p=xboard.git diff --git a/backend.h b/backend.h index 29773a8..456a0e3 100644 --- a/backend.h +++ b/backend.h @@ -106,6 +106,7 @@ int LoadGame P((FILE *f, int n, char *title, int useList)); int LoadGameFromFile P((char *filename, int n, char *title, int useList)); int CmailLoadGame P((FILE *f, int n, char *title, int useList)); int ReloadGame P((int offset)); +int SaveSelected P((FILE *f, int dummy, char *dummy2)); int SaveGame P((FILE *f, int dummy, char *dummy2)); int SaveGameToFile P((char *filename, int append)); int LoadPosition P((FILE *f, int n, char *title)); @@ -260,6 +261,7 @@ typedef struct XB_ListGame { GameInfo gameInfo; /* Note that some entries may be NULL. */ } ListGame; +extern int border; extern int doubleClick; extern int storedGames; extern int opponentKibitzes; @@ -302,6 +304,7 @@ typedef struct XB_OPT { // [HGM] options: descriptor of UCI-style option char **choice; // points to array of combo choices in cps->combo Control type; char *name; // holds both option name and text value (in allocated memory) + char **font; } Option; typedef struct XB_CPS { @@ -343,6 +346,7 @@ typedef struct XB_CPS { int analyzing; int protocolVersion; int initDone; + int pseudo; /* Added by Tord: */ int useFEN960; /* 0=use "KQkq" style FENs, 1=use "HAha" style FENs */ @@ -418,6 +422,8 @@ void MakeEngineOutputTitle P((void)); void LoadTheme P((void)); void CreateBookEvent P((void)); char *SupportedVariant P((char *list, VariantClass v, int w, int h, int s, int proto, char *engine)); +char *CollectPieceDescriptors P((void)); + /* A point in time */ typedef struct { @@ -425,6 +431,8 @@ typedef struct { int ms; /* Assuming this is >= 16 bits */ } TimeMark; +extern TimeMark programStartTime; + void GetTimeMark P((TimeMark *)); long SubtractTimeMarks P((TimeMark *, TimeMark *));