engine: platform: win32: fix build by restoring previous win32 header inclusion order

This commit is contained in:
Alibek Omarov 2025-02-28 21:44:22 +03:00
parent 1cef8ea7af
commit 97fa395a3b

View file

@ -13,17 +13,17 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*/
#include <winnt.h>
#include <dbghelp.h>
#include <psapi.h>
#include <time.h>
#include "platform/platform.h"
#include "input.h"
#define DBGHELP 1 // we always enable dbghelp.dll on Windows targets
#if DBGHELP
#include <winnt.h>
#include <dbghelp.h>
#include <psapi.h>
#include <time.h>
#ifndef XASH_SDL
typedef ULONG_PTR DWORD_PTR, *PDWORD_PTR;
#endif