X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=backend.h;h=f311074e139fbafc22d13a78ae7b9ad7d5afa646;hb=a180888cfea059c10e147b2357571c421cb4346f;hp=9e1fbb04e97cf079ef2d57b3fb2977fb27f9839b;hpb=e89dd0113650c84737e2bfab8cff9595a9ebc990;p=xboard.git diff --git a/backend.h b/backend.h index 9e1fbb0..f311074 100644 --- a/backend.h +++ b/backend.h @@ -1,6 +1,6 @@ /* * backend.h -- Interface exported by XBoard back end - * $Id$ + * $Id: backend.h,v 2.1 2003/10/27 19:21:00 mann Exp $ * * Copyright 1991 by Digital Equipment Corporation, Maynard, Massachusetts. * Enhancements Copyright 1992-95 Free Software Foundation, Inc. @@ -112,6 +112,7 @@ void DrawEvent P((void)); void AbortEvent P((void)); void AdjournEvent P((void)); void ResignEvent P((void)); +void UserAdjudicationEvent P((int result)); void StopObservingEvent P((void)); void StopExaminingEvent P((void)); void PonderNextMoveEvent P((int newState)); @@ -236,6 +237,7 @@ typedef struct _CPS { int analyzing; int protocolVersion; int initDone; + int scoreIsAbsolute; /* [AS] 0=don't know (standard), 1=score is always from white side */ } ChessProgramState; extern ChessProgramState first, second;