Fix MSVC + Tools build

afxv_w32.h (apparently included indirectly viw edit_gui_common.h)
complained that windows.h (included indirectly via DebuggerServer.h
-> platform.h) was included first, apparently that's not allowed..

this was broken by the recent "fix mingw build" commit; now hopefully
both work (MinGW doesn't support building the tools, because they need MFC
which only works with MSVC)
This commit is contained in:
Daniel Gibson 2023-01-21 20:33:14 +01:00
parent dee76dbb21
commit 2de8c22f3b
2 changed files with 6 additions and 2 deletions

View file

@ -28,12 +28,14 @@ If you have questions concerning this license or the applicable additional terms
===========================================================================
*/
#include "DebuggerServer.h"
#if defined( ID_ALLOW_TOOLS )
#include "tools/edit_gui_common.h"
#include "DebuggerServer.h"
#include "DebuggerApp.h"
#else
#include "DebuggerServer.h"
#include "debugger_common.h"
// we need a lot to be able to list all threads in mars_city1
const int MAX_MSGLEN = 8600;

View file

@ -26,13 +26,15 @@ If you have questions concerning this license or the applicable additional terms
===========================================================================
*/
#include "DebuggerServer.h"
#if defined( ID_ALLOW_TOOLS )
#include "tools/edit_gui_common.h"
#include "DebuggerServer.h"
#include "../../sys/win32/rc/debugger_resource.h"
#include "DebuggerApp.h"
#else
#include "DebuggerServer.h"
#include "debugger_common.h"
#endif