Skip to content

Commit

Permalink
engine: platform: win32: fix build by restoring previous win32 header…
Browse files Browse the repository at this point in the history
… inclusion order
  • Loading branch information
a1batross committed Feb 28, 2025
1 parent 1cef8ea commit 97fa395
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions engine/platform/win32/crash_win.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 97fa395

Please # to comment.