X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=common.h;h=b184aec3234755064e4f054cc3bc3b669e24ddf6;hb=b4785979256d342c544eaca1a6644a70eb96b2e0;hp=a48aee51d351fa47bc95d9191858c04a705e8f26;hpb=e1edcbabb63e65d5d47c07a0836dd51d7e01de0e;p=xboard.git diff --git a/common.h b/common.h index a48aee5..b184aec 100644 --- a/common.h +++ b/common.h @@ -605,6 +605,7 @@ typedef struct { Boolean noJoin; /* [HGM] join */ char *wrapContSeq; /* continuation sequence when xboard wraps text */ Boolean useInternalWrap; /* use internal wrapping -- noJoin usurps this if set */ + Boolean pasteSelection; /* paste X selection instead of clipboard */ } AppData, *AppDataPtr; /* [AS] PGN tags (for showing in the game list) */ @@ -654,6 +655,13 @@ typedef struct { int holdingsWidth; /* number of files left and right of board, 0 or 2 */ } GameInfo; +/* [AS] Search stats from chessprogram, for the played move */ +typedef struct { + int score; /* Centipawns */ + int depth; /* Plies */ + int time; /* Milliseconds */ +} ChessProgramStats_Move; + // [HGM] chat #define MAX_CHAT 3 extern int chatCount;