From b0968ab4c53d5f5adacbb9393b1aaf3c96979c5b Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Sun, 2 Mar 2014 18:53:17 +0100 Subject: [PATCH] Fix error Engine Output text highlighting In wengineoutput.c higeTextStart and End where decalred both static and extern, which somecompilers justifiably don't like. --- winboard/wengineoutput.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/winboard/wengineoutput.c b/winboard/wengineoutput.c index d3a673f..8cf4fc6 100644 --- a/winboard/wengineoutput.c +++ b/winboard/wengineoutput.c @@ -225,7 +225,8 @@ void ResizeWindowControls( int mode ) InvalidateRect( GetDlgItem(hDlg,IDC_EngineMemo2), NULL, FALSE ); } -static int currentPV, highTextStart[2], highTextEnd[2]; +static int currentPV; +int highTextStart[2], highTextEnd[2]; extern RECT boardRect; VOID -- 1.7.0.4