Optimized include/*.h: (recursively) include all headers needed by
this .h file, but only those. Necessary fixes to a lot of .c files,
started optimizing "windows.h" away from some of them. Moved
GetCurrentTask prototype to wine/winbase16.h.
diff --git a/miscemu/main.c b/miscemu/main.c
index 42e6f42..05cd714 100644
--- a/miscemu/main.c
+++ b/miscemu/main.c
@@ -4,19 +4,19 @@
*/
#include <assert.h>
+#include "wine/winbase16.h"
#include "callback.h"
-#include "debug.h"
#include "debugger.h"
#include "main.h"
#include "miscemu.h"
+#include "win16drv.h"
#include "module.h"
#include "options.h"
#include "process.h"
-#include "win16drv.h"
#include "thread.h"
#include "task.h"
#include "stackframe.h"
-#include "windows.h"
+#include "debug.h"
static int MAIN_argc;
static char **MAIN_argv;