Move Engine2GUI to a more convenient place
authorH.G.Muller <hgm@hgm-xboard.(none)>
Sat, 8 Dec 2018 09:27:20 +0000 (10:27 +0100)
committerH.G.Muller <hgm@hgm-xboard.(none)>
Sat, 8 Dec 2018 09:27:20 +0000 (10:27 +0100)
The main loop of the engine thread is moved to a place in the code
where future changes would require fewer forward calls to other routines.

UCI2WB.c

index b9df43c..8de43f5 100644 (file)
--- a/UCI2WB.c
+++ b/UCI2WB.c
@@ -411,13 +411,6 @@ HandleEngineOutput()
     }\r
 }\r
 \r
-void *\r
-Engine2GUI()\r
-{\r
-    if(fromF = fopen("DefectiveEngineOptions.ini", "r")) printf("# fake engine input\n");\r
-    HandleEngineOutput();\r
-}\r
-\r
 void\r
 Move4Engine(char *m)\r
 {\r
@@ -649,6 +642,13 @@ DoCommand ()
     return 0;\r
 }\r
 \r
+void *\r
+Engine2GUI()\r
+{\r
+    if(fromF = fopen("DefectiveEngineOptions.ini", "r")) printf("# fake engine input\n");\r
+    HandleEngineOutput();\r
+}\r
+\r
 int\r
 StartEngine(char *cmdLine, char *dir)\r
 {\r