X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=frontend.h;h=f3556e683063d7580c4a227efe4be4da660650d3;hb=998b7c7246b5f2e96db31bbbd3c7e760849c2290;hp=853c66574a3ed35dee202f9b2f911514c0121c3b;hpb=29df666d997ad990de5376c962b154b26eb73f2f;p=xboard.git diff --git a/frontend.h b/frontend.h index 853c665..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, char * hint )); /* [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