diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-08-20 21:03:18 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-08-20 21:03:18 +0300 |
commit | 0e9a789e663b2f05e8e77136d64bd1c04747d17f (patch) | |
tree | a0add4e27c7d9ab23fb93a41bb7ce2b306feceb9 /cxx/include/aesxx/debug.hpp | |
parent | code style (diff) | |
download | aes-tools-0e9a789e663b2f05e8e77136d64bd1c04747d17f.tar.gz aes-tools-0e9a789e663b2f05e8e77136d64bd1c04747d17f.zip |
Windows.h > windows.h
... to enable cross-compilation from Ubuntu, where there's windows.h,
and paths are case-sensitive.
Diffstat (limited to 'cxx/include/aesxx/debug.hpp')
-rw-r--r-- | cxx/include/aesxx/debug.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cxx/include/aesxx/debug.hpp b/cxx/include/aesxx/debug.hpp index bf1fc9a..96e81b5 100644 --- a/cxx/include/aesxx/debug.hpp +++ b/cxx/include/aesxx/debug.hpp @@ -6,7 +6,7 @@ #pragma once #ifdef WIN32 -#include <Windows.h> +#include <windows.h> #include <DbgHelp.h> #pragma comment(lib, "DbgHelp.Lib") #endif |