X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=backend.h;h=5234b440995d05d79db5942e173bbe0b947dc18e;hb=4ea709920881b5de5334e1096f7d00589df0273b;hp=2a3d3d8664d383b2df9c56a691e4d5fc8680c746;hpb=74506c0e852b35465c651f331e010ca7e60e7dd3;p=xboard.git diff --git a/backend.h b/backend.h index 2a3d3d8..5234b44 100644 --- a/backend.h +++ b/backend.h @@ -5,7 +5,7 @@ * Massachusetts. * * Enhancements Copyright 1992-2001, 2002, 2003, 2004, 2005, 2006, - * 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. + * 2007, 2008, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc. * * Enhancements Copyright 2005 Alessandro Scotti * @@ -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)); @@ -395,6 +398,7 @@ typedef struct XB_CPS { int memSize; /* [HGM] memsize: engine understands memory command */ char egtFormats[MSG_SIZ]; /* [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 */ #define MAX_OPTIONS 200 Option option[MAX_OPTIONS]; @@ -404,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;