X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=backend.h;h=f52f1f59c972427e8a7dfd6bf04b9d3eb92a03b2;hb=b52aafe5fc484a170251d4bb5bad039ffbbda4df;hp=d62f5102e8176fd0f9e49725431ff17677ce362c;hpb=f1549d478be5058606811dac414d79492d1ebe5c;p=xboard.git diff --git a/backend.h b/backend.h index d62f510..f52f1f5 100644 --- a/backend.h +++ b/backend.h @@ -73,6 +73,7 @@ extern Board boards[]; extern char marker[BOARD_RANKS][BOARD_FILES]; extern char lastMsg[MSG_SIZ]; extern Boolean bookUp; +extern Boolean addToBookFlag; extern int tinyLayout, smallLayout; extern Boolean mcMode; extern int dragging; @@ -105,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)); @@ -204,6 +206,7 @@ int PromoScroll P((int x, int y)); void EditBookEvent P((void)); Boolean DisplayBook P((int moveNr)); void SaveToBook P((char *text)); +void AddBookMove P((char *text)); void PlayBookMove P((char *text, int index)); void HoverEvent P((int hiX, int hiY, int x, int y)); int PackGame P((Board board)); @@ -300,6 +303,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 { @@ -341,6 +345,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 */ @@ -423,6 +428,8 @@ typedef struct { int ms; /* Assuming this is >= 16 bits */ } TimeMark; +extern TimeMark programStartTime; + void GetTimeMark P((TimeMark *)); long SubtractTimeMarks P((TimeMark *, TimeMark *));