mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-11 16:46:16 +00:00
Cleanup common header includes (#690)
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "kernel_mapped.hpp"
|
||||
|
||||
// NOLINTBEGIN(modernize-use-using,cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)
|
||||
|
||||
#define ACCESS_MASK DWORD
|
||||
|
||||
@@ -2,6 +2,12 @@
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
#include "primitives.hpp"
|
||||
#include "traits.hpp"
|
||||
#include "unicode.hpp"
|
||||
#include "status.hpp"
|
||||
#include "process.hpp"
|
||||
|
||||
// NOLINTBEGIN(modernize-use-using,cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)
|
||||
|
||||
#ifndef NT_SUCCESS
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
#pragma once
|
||||
|
||||
#include "traits.hpp"
|
||||
#include "primitives.hpp"
|
||||
|
||||
template <typename Traits>
|
||||
struct EMU_WSABUF
|
||||
{
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include "compiler.hpp"
|
||||
|
||||
// NOLINTBEGIN(modernize-use-using)
|
||||
|
||||
#ifdef OS_WINDOWS
|
||||
|
||||
#include "../utils/win.hpp"
|
||||
#include "winnt.h"
|
||||
#include <winnt.h>
|
||||
|
||||
#else
|
||||
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "kernel_mapped.hpp"
|
||||
|
||||
// NOLINTBEGIN(modernize-use-using,cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)
|
||||
|
||||
typedef enum _THREADINFOCLASS
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
#include <system_error>
|
||||
#include <variant>
|
||||
|
||||
#include "primitives.hpp"
|
||||
|
||||
// NOLINTBEGIN(modernize-use-using,cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)
|
||||
|
||||
#define IMAGE_DIRECTORY_ENTRY_EXPORT 0 // Export Directory
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "kernel_mapped.hpp"
|
||||
|
||||
// NOLINTBEGIN(modernize-use-using,cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)
|
||||
|
||||
using pointer = uint64_t;
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
#include "std_include.hpp"
|
||||
|
||||
#include "minidump_loader.hpp"
|
||||
#include "windows_emulator.hpp"
|
||||
#include "windows_objects.hpp"
|
||||
#include "emulator_thread.hpp"
|
||||
#include "common/platform/unicode.hpp"
|
||||
#include "common/platform/kernel_mapped.hpp"
|
||||
#include "memory_utils.hpp"
|
||||
|
||||
#include <platform/platform.hpp>
|
||||
|
||||
#include <minidump/minidump.hpp>
|
||||
|
||||
namespace minidump_loader
|
||||
|
||||
Reference in New Issue
Block a user