aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-01-18 01:39:10 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-01-25 01:53:08 +0300
commit80bbbf8946a1ecea6b2493078b5736f62c8c4526 (patch)
treec57025e6b56e26c23a97886c0e50e2275d08a4cf /src
parentupdate cmake-common (diff)
downloadwinapi-debug-80bbbf8946a1ecea6b2493078b5736f62c8c4526.tar.gz
winapi-debug-80bbbf8946a1ecea6b2493078b5736f62c8c4526.zip
mingw builds: lowercase header file names
Diffstat (limited to 'src')
-rw-r--r--src/call_stack.cpp2
-rw-r--r--src/dbghelp.cpp4
-rw-r--r--src/error.cpp2
-rw-r--r--src/symbol.cpp4
-rw-r--r--src/utils/file.cpp2
5 files changed, 7 insertions, 7 deletions
diff --git a/src/call_stack.cpp b/src/call_stack.cpp
index e421d34..4edba46 100644
--- a/src/call_stack.cpp
+++ b/src/call_stack.cpp
@@ -7,7 +7,7 @@
#include <SafeInt.hpp>
-#include <Windows.h>
+#include <windows.h>
#include <algorithm>
#include <array>
diff --git a/src/dbghelp.cpp b/src/dbghelp.cpp
index 0105682..efbdede 100644
--- a/src/dbghelp.cpp
+++ b/src/dbghelp.cpp
@@ -7,8 +7,8 @@
#include <SafeInt.hpp>
-#include <DbgHelp.h>
-#include <Windows.h>
+#include <dbghelp.h>
+#include <windows.h>
#include <cstddef>
#include <cstring>
diff --git a/src/error.cpp b/src/error.cpp
index 320c5d0..16512b3 100644
--- a/src/error.cpp
+++ b/src/error.cpp
@@ -5,7 +5,7 @@
#include "pdb/all.hpp"
-#include <Windows.h>
+#include <windows.h>
#include <string>
diff --git a/src/symbol.cpp b/src/symbol.cpp
index 4c271c0..e679f4a 100644
--- a/src/symbol.cpp
+++ b/src/symbol.cpp
@@ -7,8 +7,8 @@
#include <SafeInt.hpp>
-#include <DbgHelp.h>
-#include <Windows.h>
+#include <dbghelp.h>
+#include <windows.h>
#include <cstddef>
#include <cstring>
diff --git a/src/utils/file.cpp b/src/utils/file.cpp
index 85af444..826f470 100644
--- a/src/utils/file.cpp
+++ b/src/utils/file.cpp
@@ -7,7 +7,7 @@
#include <SafeInt.hpp>
-#include <Windows.h>
+#include <windows.h>
#include <cstddef>
#include <stdexcept>