X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=common.h;h=b184aec3234755064e4f054cc3bc3b669e24ddf6;hb=b4785979256d342c544eaca1a6644a70eb96b2e0;hp=83c68379cedb4684b3af7af534b96a964bf3fed4;hpb=bf368bef696bee3555a370ac8ff88418e1f5c498;p=xboard.git diff --git a/common.h b/common.h index 83c6837..b184aec 100644 --- a/common.h +++ b/common.h @@ -602,6 +602,10 @@ typedef struct { char *fenOverride2; Boolean keepAlive; /* [HGM] alive */ Boolean forceIllegal;/*[HGM] illegal */ + 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) */ @@ -651,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;