X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=frontend.h;h=f3556e683063d7580c4a227efe4be4da660650d3;hb=36da20342a0bc5ef6c36587944cb2f35b2ea46da;hp=ef79f23fecb51376f2d7905e79c398b320cb5339;hpb=2380bd9a886c088ba6040d99932c20cdf080fbbb;p=xboard.git diff --git a/frontend.h b/frontend.h index ef79f23..f3556e6 100644 --- a/frontend.h +++ b/frontend.h @@ -169,6 +169,18 @@ void FreezeUI P((void)); void ThawUI P((void)); extern char *programName; -void SetProgramStats P(( int which, int depth, unsigned long nodes, int score, int time, char * pv )); /* [AS] */ +typedef struct FrontEndProgramStats_TAG { + int which; + int depth; + unsigned long nodes; + int score; + int time; + char * pv; + char * hint; + int an_move_index; + int an_move_count; +} FrontEndProgramStats; + +void SetProgramStats P(( FrontEndProgramStats * stats )); /* [AS] */ #endif