X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=backend.h;h=1092957b07ec4809ac74d51d562d196e5d0b431d;hb=30ded7c1180da9dc3dc703d92f4c0617ea092647;hp=c9f14bc6f91ae19cf213dc5cba50663c7c27e75a;hpb=a009a27e8c1e0bfa818f12fdcae675d0babc510a;p=xboard.git diff --git a/backend.h b/backend.h index c9f14bc..1092957 100644 --- a/backend.h +++ b/backend.h @@ -96,6 +96,8 @@ #include "lists.h" +typedef int (*FileProc) P((FILE *f, int n, char *title)); + extern char *wbOptions; extern int gotPremove; extern GameMode gameMode; @@ -114,6 +116,7 @@ extern Boolean bookUp; extern int tinyLayout, smallLayout; extern Boolean mcMode; +void MarkMenuItem P((char *menuRef, int state)); char *CmailMsg P((void)); /* Tord: Added the useFEN960 parameter in PositionToFEN() below */ char *PositionToFEN P((int move, char* useFEN960)); @@ -366,9 +369,9 @@ typedef struct XB_CPS { int sdKludge; /* 0=use "sd DEPTH" command; 1=use "depth\nDEPTH" */ int stKludge; /* 0=use "st TIME" command; 1=use "level 1 TIME" */ int excludeMoves;/* 0=don't use "exclude" command; 1=do */ - char tidy[MSG_SIZ]; + char *tidy; int matchWins; - char variants[MSG_SIZ]; + char *variants; int analysisSupport; int analyzing; int protocolVersion; @@ -393,7 +396,7 @@ typedef struct XB_CPS { int alphaRank; /* [HGM] shogi: engine uses shogi-type coordinates */ int maxCores; /* [HGM] SMP: engine understands cores command */ int memSize; /* [HGM] memsize: engine understands memory command */ - char egtFormats[MSG_SIZ]; /* [HGM] EGT: supported tablebase formats */ + char *egtFormats; /* [HGM] EGT: supported tablebase formats */ int bookSuspend; /* [HGM] book: go was deferred because of book hit */ int pause; /* [HGM] pause: 1=supports it, 2=actually paused */ int nrOptions; /* [HGM] options: remembered option="..." features */ @@ -405,6 +408,7 @@ typedef struct XB_CPS { void *programLogo; /* [HGM] logo: bitmap of the logo */ char *fenOverride; /* [HGM} FRC: force FEN casling & ep fields by hand */ char userError; /* [HGM] crash: flag to suppress fatal-error messages*/ + char reload; /* [HGM] options: flag to resend options with xreuse */ } ChessProgramState; extern ChessProgramState first, second;