1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-24 22:43:47 +00:00

Tidy up includes

This commit is contained in:
AnyOldName3 2021-12-26 02:09:14 +00:00
parent f05cd901cf
commit 0e29a760d8
3 changed files with 7 additions and 3 deletions

View File

@ -1,10 +1,11 @@
#include "windows_crashcatcher.hpp"
#include <cassert>
#include <cwchar>
#include <iostream>
#include <sstream>
#include <thread>
#include "windows_crashcatcher.hpp"
#include "windows_crashmonitor.hpp"
#include "windows_crashshm.hpp"
#include <SDL_messagebox.h>

View File

@ -1,3 +1,5 @@
#include "windows_crashmonitor.hpp"
#undef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
@ -12,7 +14,6 @@
#include <SDL_messagebox.h>
#include "windows_crashcatcher.hpp"
#include "windows_crashmonitor.hpp"
#include "windows_crashshm.hpp"
#include <components/debug/debuglog.hpp>

View File

@ -1,7 +1,9 @@
#ifndef WINDOWS_CRASHMONITOR_HPP
#define WINDOWS_CRASHMONITOR_HPP
#include <windef.h>
#undef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
namespace Crash
{