diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/pdb/address.hpp | 2 | ||||
-rw-r--r-- | include/pdb/call_stack.hpp | 2 | ||||
-rw-r--r-- | include/pdb/dbghelp.hpp | 2 | ||||
-rw-r--r-- | include/pdb/error.hpp | 2 | ||||
-rw-r--r-- | include/pdb/handle.hpp | 2 | ||||
-rw-r--r-- | include/pdb/module.hpp | 4 | ||||
-rw-r--r-- | include/pdb/symbol.hpp | 4 | ||||
-rw-r--r-- | include/pdb/utils/file.hpp | 2 |
8 files changed, 10 insertions, 10 deletions
diff --git a/include/pdb/address.hpp b/include/pdb/address.hpp index ea3b79d..fa692ad 100644 --- a/include/pdb/address.hpp +++ b/include/pdb/address.hpp @@ -5,7 +5,7 @@ #pragma once -#include <Windows.h> +#include <windows.h> #include <sstream> #include <string> diff --git a/include/pdb/call_stack.hpp b/include/pdb/call_stack.hpp index 7f0c8b0..968b1b8 100644 --- a/include/pdb/call_stack.hpp +++ b/include/pdb/call_stack.hpp @@ -10,7 +10,7 @@ #include <SafeInt.hpp> -#include <Windows.h> +#include <windows.h> #include <array> #include <cstddef> diff --git a/include/pdb/dbghelp.hpp b/include/pdb/dbghelp.hpp index db9638e..af10789 100644 --- a/include/pdb/dbghelp.hpp +++ b/include/pdb/dbghelp.hpp @@ -9,7 +9,7 @@ #include "module.hpp" #include "symbol.hpp" -#include <Windows.h> +#include <windows.h> #include <functional> #include <string> diff --git a/include/pdb/error.hpp b/include/pdb/error.hpp index 2b9a8be..beb0489 100644 --- a/include/pdb/error.hpp +++ b/include/pdb/error.hpp @@ -5,7 +5,7 @@ #pragma once -#include <Windows.h> +#include <windows.h> #include <string> #include <system_error> diff --git a/include/pdb/handle.hpp b/include/pdb/handle.hpp index 511ef90..2cc5d32 100644 --- a/include/pdb/handle.hpp +++ b/include/pdb/handle.hpp @@ -7,7 +7,7 @@ #include "workarounds.hpp" -#include <Windows.h> +#include <windows.h> #include <cassert> #include <memory> diff --git a/include/pdb/module.hpp b/include/pdb/module.hpp index bff8bd6..1a5b227 100644 --- a/include/pdb/module.hpp +++ b/include/pdb/module.hpp @@ -7,8 +7,8 @@ #include "address.hpp" -#include <DbgHelp.h> -#include <Windows.h> +#include <dbghelp.h> +#include <windows.h> #include <string> diff --git a/include/pdb/symbol.hpp b/include/pdb/symbol.hpp index 3e0ab17..25e997b 100644 --- a/include/pdb/symbol.hpp +++ b/include/pdb/symbol.hpp @@ -10,8 +10,8 @@ #include <SafeInt.hpp> -#include <DbgHelp.h> -#include <Windows.h> +#include <dbghelp.h> +#include <windows.h> #include <array> #include <climits> diff --git a/include/pdb/utils/file.hpp b/include/pdb/utils/file.hpp index 8054847..2f2db9a 100644 --- a/include/pdb/utils/file.hpp +++ b/include/pdb/utils/file.hpp @@ -7,7 +7,7 @@ #include <boost/functional/hash.hpp> -#include <Windows.h> +#include <windows.h> #include <cstddef> #include <cstring> |