aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-05-29 01:03:28 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-05-29 01:03:28 +0300
commita38dacc6489ff3c7a0748a01ed7cc2bd0cdaaa7c (patch)
treede48e7d8b3f9d66c9e11dd048ac9062921b05801 /utils
parentadd .clang-tidy, `make check` (diff)
downloadwinapi-debug-a38dacc6489ff3c7a0748a01ed7cc2bd0cdaaa7c.tar.gz
winapi-debug-a38dacc6489ff3c7a0748a01ed7cc2bd0cdaaa7c.zip
include/pdb/ -> include/winapi/debug/
Diffstat (limited to '')
-rw-r--r--utils/addr2name.cpp3
-rw-r--r--utils/enum_symbols.cpp3
-rw-r--r--utils/name2addr.cpp3
-rw-r--r--utils/pdb_descr.hpp2
4 files changed, 7 insertions, 4 deletions
diff --git a/utils/addr2name.cpp b/utils/addr2name.cpp
index 6aba1e6..cffc756 100644
--- a/utils/addr2name.cpp
+++ b/utils/addr2name.cpp
@@ -4,9 +4,10 @@
// Distributed under the MIT License.
#include "command_line.hpp"
-#include "pdb/all.hpp"
#include "pdb_descr.hpp"
+#include <winapi/debug.hpp>
+
#include <boost/program_options.hpp>
#include <exception>
diff --git a/utils/enum_symbols.cpp b/utils/enum_symbols.cpp
index d8f9b98..0eea104 100644
--- a/utils/enum_symbols.cpp
+++ b/utils/enum_symbols.cpp
@@ -4,7 +4,8 @@
// Distributed under the MIT License.
#include "command_line.hpp"
-#include "pdb/all.hpp"
+
+#include <winapi/debug.hpp>
#include <boost/program_options.hpp>
diff --git a/utils/name2addr.cpp b/utils/name2addr.cpp
index cae0f39..e90aacb 100644
--- a/utils/name2addr.cpp
+++ b/utils/name2addr.cpp
@@ -4,9 +4,10 @@
// Distributed under the MIT License.
#include "command_line.hpp"
-#include "pdb/all.hpp"
#include "pdb_descr.hpp"
+#include <winapi/debug.hpp>
+
#include <boost/program_options.hpp>
#include <exception>
diff --git a/utils/pdb_descr.hpp b/utils/pdb_descr.hpp
index 967e69f..8619fdc 100644
--- a/utils/pdb_descr.hpp
+++ b/utils/pdb_descr.hpp
@@ -5,7 +5,7 @@
#pragma once
-#include "pdb/all.hpp"
+#include <winapi/debug.hpp>
#include <boost/program_options.hpp>