X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=backend.h;h=ae2baf5cda92662e3e2c69e3fcf9b7fbd256e1d8;hb=431df5521062e06be156dcf7a33332b0a5e0010e;hp=bd8e2ac0525e828fc37683d7c47b44d2a462176c;hpb=999fb2f90f9e89fd0e01e665797fec8fb7154fef;p=xboard.git diff --git a/backend.h b/backend.h index bd8e2ac..ae2baf5 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 Free Software Foundation, Inc. + * 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. * * Enhancements Copyright 2005 Alessandro Scotti * @@ -97,6 +97,7 @@ #include "lists.h" #include "frontend.h" +extern char *wbOptions; extern int gotPremove; extern GameMode gameMode; extern int matchMode; @@ -208,6 +209,7 @@ void ExitAnalyzeMode P((void)); void AnalyzeModeEvent P((void)); void AnalyzeFileEvent P((void)); void MatchEvent P((int mode)); +void RecentEngineEvent P((int nr)); void TypeInEvent P((char first)); void TypeInDoneEvent P((char *move)); void InitPosition P((int redraw)); @@ -303,7 +305,7 @@ void InitSearch P((void)); int GameContainsPosition P((FILE *f, ListGame *lg)); void GLT_TagsToList P(( char * tags )); void GLT_ParseList P((void)); -void NamesToList P((char *name, char **engines, char **mnemonics)); +int NamesToList P((char *name, char **engines, char **mnemonics, char *group)); int CreateTourney P((char *name)); char *MakeName P((char *templ)); void SwapEngines P((int n)); @@ -316,7 +318,7 @@ extern Boolean set_cont_sequence P((char *new_seq)); extern int wrap P((char *dest, char *src, int count, int width, int *lp)); int Explode P((Board board, int fromX, int fromY, int toX, int toY)); -typedef enum { CheckBox, ComboBox, TextBox, Button, Spin, ResetButton, SaveButton, +typedef enum { CheckBox, ComboBox, TextBox, Button, Spin, ResetButton, SaveButton, ListBox, FileName, PathName, Slider, Message, Fractional, Label, Break, EndMark } Control; /* Flags Option.min used for ComboBox: */ @@ -370,6 +372,7 @@ typedef struct _CPS { int sendName; /* 0=don't use "name" command; 1=do */ 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]; int matchWins; char variants[MSG_SIZ]; @@ -434,6 +437,8 @@ extern Boolean shuffleOpenings; extern ChessProgramStats programStats; extern int opponentKibitzes; // used by wengineo.c extern int errorExitStatus; +extern char *recentEngines; +extern char *comboLine; void SettingsPopUp P((ChessProgramState *cps)); // [HGM] really in front-end, but CPS not known in frontend.h int WaitForEngine P((ChessProgramState *cps, DelayedEventCallback x)); void Load P((ChessProgramState *cps, int n));