X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=engineoutput.h;fp=engineoutput.h;h=b0a2c31fb0c1d7d6e30b2f7e568df7611e9df5d0;hb=003ab519c36430f6df51e0e6e2aa528476894161;hp=7007c1600c01142537e5d4616f85edd8388f1b1a;hpb=72f96a2581a9b7b0682e34cbf391d19d834c3d15;p=xboard.git diff --git a/engineoutput.h b/engineoutput.h index 7007c16..b0a2c31 100644 --- a/engineoutput.h +++ b/engineoutput.h @@ -51,17 +51,13 @@ #define ICON_SIZE 14 -#define STATE_UNKNOWN -1 -#define STATE_THINKING 0 -#define STATE_IDLE 1 -#define STATE_PONDERING 2 -#define STATE_ANALYZING 3 +enum ENGINE_STATE { STATE_UNKNOWN, STATE_THINKING, STATE_IDLE, STATE_PONDERING, STATE_ANALYZING }; extern int windowMode; extern char exclusionHeader[]; // back-end called by front-end -void SetEngineState( int which, int state, char * state_data ); +void SetEngineState( int which, enum ENGINE_STATE state, char * state_data ); // front-end called by back-end void SetEngineColorIcon( int which ); @@ -70,7 +66,7 @@ void DoSetWindowText(int which, int field, char *s_label); void InsertIntoMemo( int which, char * text, int where ); void DoClearMemo(int which); void ResizeWindowControls( int mode ); -int EngineOutputDialogExists(); +int EngineOutputDialogExists(); void SetEngineOutputTitle( char *title ); void InitEngineOutput P((Option *opt, Option *memo2)); // XB only void DrawWidgetIcon P((Option *opt, int nIcon)); // XB only