X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=backend.h;h=bd8e2ac0525e828fc37683d7c47b44d2a462176c;hb=29f26a97a226db6e7bdd0927e67cf5a5ce3dd065;hp=8b45b16837782eb32088d34ca06f4b5a08af99a2;hpb=88f47a10d4ef49ca194a212e7a12ab41b2fe3556;p=xboard.git diff --git a/backend.h b/backend.h index 8b45b16..bd8e2ac 100644 --- a/backend.h +++ b/backend.h @@ -319,9 +319,17 @@ int Explode P((Board board, int fromX, int fromY, int toX, int toY)); typedef enum { CheckBox, ComboBox, TextBox, Button, Spin, ResetButton, SaveButton, FileName, PathName, Slider, Message, Fractional, Label, Break, EndMark } Control; +/* Flags Option.min used for ComboBox: */ +#define COMBO_CALLBACK (1 << 0) +#define NO_GETTEXT (1 << 1) + +/* Flags for Option.min used for Button, SaveButton, EndMark: */ +#define SAME_ROW (1 << 0) +#define NO_OK (1 << 1) + typedef struct _OPT { // [HGM] options: descriptor of UCI-style option int value; // current setting, starts as default - int min; + int min; // Also used for flags int max; void *handle; // for use by front end void *target; // for use by front end @@ -350,6 +358,7 @@ typedef struct _CPS { int offeredDraw; /* countdown */ int reuse; int useSetboard; /* 0=use "edit"; 1=use "setboard" */ + int extendedEdit;/* 1=also set holdings with "edit" */ int useSAN; /* 0=use coordinate notation; 1=use SAN */ int usePing; /* 0=not OK to use ping; 1=OK */ int lastPing; @@ -433,4 +442,13 @@ void MoveHistorySet P(( char movelist[][2*MOVE_LEN], int first, int last, int cu void EvalGraphSet P(( int first, int last, int current, ChessProgramStats_Move * pvInfo )); void MakeEngineOutputTitle P((void)); +/* A point in time */ +typedef struct { + long sec; /* Assuming this is >= 32 bits */ + int ms; /* Assuming this is >= 16 bits */ +} TimeMark; + +void GetTimeMark P((TimeMark *)); +long SubtractTimeMarks P((TimeMark *, TimeMark *)); + #endif /* _BACKEND */