Hi,
two of the Pascal demos contain a duplicated type declaration (which the current GPC will flag as an error). This will fix it.
--- pascal/bgi/allmodes.pas.orig Sun Oct 7 01:17:54 2001 +++ pascal/bgi/allmodes.pas Fri Jul 19 20:48:49 2002 @@ -15,9 +15,6 @@ uses Graph;
-type - WrkString = String[255]; - function MyStr(Numeric, Len: Integer):WrkString; var RetString : WrkString; --- pascal/bgi/demo.pas.orig Sat Dec 22 14:05:18 2001 +++ pascal/bgi/demo.pas Fri Jul 19 20:49:28 2002 @@ -19,9 +19,6 @@ graph, crt; (*$endif*)
-type - WrkString = String[255]; - var Test, Corr : Real; @@ -561,4 +558,4 @@ Write ('Press Enter ...'); Readln; end; -end. \ No newline at end of file +end.
Secondly, I've heard that the Mingw version of GRX also runs under Cygwin. So the `ifdef __MINGW32__' that I put in the Pascal units (grx.pas and graph.pas) should probably be changed to _WIN32. However, I can't test this myself since I use neither of these systems.
Frank