aboutsummaryrefslogtreecommitdiffstatshomepage
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
parentadd .clang-tidy, `make check` (diff)
downloadwinapi-debug-a38dacc6489ff3c7a0748a01ed7cc2bd0cdaaa7c.tar.gz
winapi-debug-a38dacc6489ff3c7a0748a01ed7cc2bd0cdaaa7c.zip
include/pdb/ -> include/winapi/debug/
-rw-r--r--include/winapi/debug.hpp (renamed from include/pdb/all.hpp)12
-rw-r--r--include/winapi/debug/address.hpp (renamed from include/pdb/address.hpp)0
-rw-r--r--include/winapi/debug/call_stack.hpp (renamed from include/pdb/call_stack.hpp)0
-rw-r--r--include/winapi/debug/dbghelp.hpp (renamed from include/pdb/dbghelp.hpp)0
-rw-r--r--include/winapi/debug/module.hpp (renamed from include/pdb/module.hpp)0
-rw-r--r--include/winapi/debug/repo.hpp (renamed from include/pdb/repo.hpp)0
-rw-r--r--include/winapi/debug/symbol.hpp (renamed from include/pdb/symbol.hpp)0
-rw-r--r--src/call_stack.cpp2
-rw-r--r--src/dbghelp.cpp3
-rw-r--r--src/module.cpp3
-rw-r--r--src/repo.cpp3
-rw-r--r--src/symbol.cpp3
-rw-r--r--test/test_lib.cpp2
-rw-r--r--test/unit_tests/call_stack.cpp3
-rw-r--r--test/unit_tests/dbghelp.cpp2
-rw-r--r--test/unit_tests/fixtures.hpp3
-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
20 files changed, 24 insertions, 23 deletions
diff --git a/include/pdb/all.hpp b/include/winapi/debug.hpp
index 968e85d..dc42557 100644
--- a/include/pdb/all.hpp
+++ b/include/winapi/debug.hpp
@@ -5,9 +5,9 @@
#pragma once
-#include "address.hpp"
-#include "call_stack.hpp"
-#include "dbghelp.hpp"
-#include "module.hpp"
-#include "repo.hpp"
-#include "symbol.hpp"
+#include "debug/address.hpp"
+#include "debug/call_stack.hpp"
+#include "debug/dbghelp.hpp"
+#include "debug/module.hpp"
+#include "debug/repo.hpp"
+#include "debug/symbol.hpp"
diff --git a/include/pdb/address.hpp b/include/winapi/debug/address.hpp
index 3d7acd6..3d7acd6 100644
--- a/include/pdb/address.hpp
+++ b/include/winapi/debug/address.hpp
diff --git a/include/pdb/call_stack.hpp b/include/winapi/debug/call_stack.hpp
index 30f642c..30f642c 100644
--- a/include/pdb/call_stack.hpp
+++ b/include/winapi/debug/call_stack.hpp
diff --git a/include/pdb/dbghelp.hpp b/include/winapi/debug/dbghelp.hpp
index 6965823..6965823 100644
--- a/include/pdb/dbghelp.hpp
+++ b/include/winapi/debug/dbghelp.hpp
diff --git a/include/pdb/module.hpp b/include/winapi/debug/module.hpp
index 5cfa69d..5cfa69d 100644
--- a/include/pdb/module.hpp
+++ b/include/winapi/debug/module.hpp
diff --git a/include/pdb/repo.hpp b/include/winapi/debug/repo.hpp
index 3b194ff..3b194ff 100644
--- a/include/pdb/repo.hpp
+++ b/include/winapi/debug/repo.hpp
diff --git a/include/pdb/symbol.hpp b/include/winapi/debug/symbol.hpp
index 47e4fb1..47e4fb1 100644
--- a/include/pdb/symbol.hpp
+++ b/include/winapi/debug/symbol.hpp
diff --git a/src/call_stack.cpp b/src/call_stack.cpp
index d47a8ca..f6ac0f9 100644
--- a/src/call_stack.cpp
+++ b/src/call_stack.cpp
@@ -3,7 +3,7 @@
// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
-#include <pdb/all.hpp>
+#include <winapi/debug.hpp>
#include <windows.h>
diff --git a/src/dbghelp.cpp b/src/dbghelp.cpp
index d42c900..f645eb4 100644
--- a/src/dbghelp.cpp
+++ b/src/dbghelp.cpp
@@ -3,8 +3,7 @@
// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
-#include <pdb/all.hpp>
-
+#include <winapi/debug.hpp>
#include <winapi/error.hpp>
#include <winapi/file.hpp>
#include <winapi/utf8.hpp>
diff --git a/src/module.cpp b/src/module.cpp
index 672cceb..bb5a7a5 100644
--- a/src/module.cpp
+++ b/src/module.cpp
@@ -3,8 +3,7 @@
// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
-#include <pdb/all.hpp>
-
+#include <winapi/debug.hpp>
#include <winapi/utf8.hpp>
#include <cstring>
diff --git a/src/repo.cpp b/src/repo.cpp
index 610ef9a..b186178 100644
--- a/src/repo.cpp
+++ b/src/repo.cpp
@@ -3,8 +3,7 @@
// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
-#include <pdb/all.hpp>
-
+#include <winapi/debug.hpp>
#include <winapi/file.hpp>
#include <map>
diff --git a/src/symbol.cpp b/src/symbol.cpp
index 4de9a7d..27e93b5 100644
--- a/src/symbol.cpp
+++ b/src/symbol.cpp
@@ -3,8 +3,7 @@
// For details, see https://github.com/egor-tensin/winapi-debug.
// Distributed under the MIT License.
-#include <pdb/all.hpp>
-
+#include <winapi/debug.hpp>
#include <winapi/utf8.hpp>
#include <dbghelp.h>
diff --git a/test/test_lib.cpp b/test/test_lib.cpp
index cb3d1d7..e361ea4 100644
--- a/test/test_lib.cpp
+++ b/test/test_lib.cpp
@@ -5,7 +5,7 @@
#include "test_lib.hpp"
-#include <pdb/all.hpp>
+#include <winapi/debug.hpp>
#include <iostream>
diff --git a/test/unit_tests/call_stack.cpp b/test/unit_tests/call_stack.cpp
index d4c9c0e..968555a 100644
--- a/test/unit_tests/call_stack.cpp
+++ b/test/unit_tests/call_stack.cpp
@@ -5,9 +5,10 @@
#include "fixtures.hpp"
-#include <pdb/all.hpp>
#include <test_lib.hpp>
+#include <winapi/debug.hpp>
+
#include <boost/optional.hpp>
#include <boost/test/unit_test.hpp>
diff --git a/test/unit_tests/dbghelp.cpp b/test/unit_tests/dbghelp.cpp
index 2393b77..293c8b1 100644
--- a/test/unit_tests/dbghelp.cpp
+++ b/test/unit_tests/dbghelp.cpp
@@ -5,7 +5,7 @@
#include "fixtures.hpp"
-#include <pdb/all.hpp>
+#include <winapi/debug.hpp>
#include <boost/test/unit_test.hpp>
diff --git a/test/unit_tests/fixtures.hpp b/test/unit_tests/fixtures.hpp
index 78e7a8b..3da2b3b 100644
--- a/test/unit_tests/fixtures.hpp
+++ b/test/unit_tests/fixtures.hpp
@@ -7,9 +7,10 @@
#include "paths.hpp"
-#include <pdb/all.hpp>
#include <test_lib.hpp>
+#include <winapi/debug.hpp>
+
#include <boost/filesystem.hpp>
#include <boost/test/unit_test.hpp>
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>