Fix WinBoard compile errors
authorH.G. Muller <h.g.muller@hccnet.nl>
Sun, 21 Oct 2012 09:24:18 +0000 (11:24 +0200)
committerH.G. Muller <h.g.muller@hccnet.nl>
Sun, 21 Oct 2012 09:28:07 +0000 (11:28 +0200)
frontend.h
winboard/wevalgraph.c

index e2b7b60..56fed20 100644 (file)
@@ -184,6 +184,7 @@ extern char *homeDir;
 
 /* these are in wgamelist.c */
 void GameListPopUp P((FILE *fp, char *filename));
+void GameListPopDown P((void));
 void GameListHighlight P((int index));
 void GameListDestroy P((void));
 
index 5a6ca62..e438916 100644 (file)
@@ -58,7 +58,7 @@ Boolean EvalGraphIsUp()
 }\r
 \r
 // [HGM] front-end, added as wrapper to avoid use of LineTo and MoveToEx in other routines (so they can be back-end) \r
-void DrawSegment( int x, int y, int *lastX, int *lastY, int penType )\r
+void DrawSegment( int x, int y, int *lastX, int *lastY, enum PEN penType )\r
 {\r
     POINT stPt;\r
     if(penType == PEN_NONE) MoveToEx( hdcPB, x, y, &stPt ); else {\r