diff options
author | Erik Janssens <erik.janssens@conceptive.be> | 2018-08-16 08:40:50 +0200 |
---|---|---|
committer | INADA Naoki <methane@users.noreply.github.com> | 2018-08-16 15:40:50 +0900 |
commit | e6a4755e6793942b950c1595e0c34bd66a0ee13e (patch) | |
tree | 532f4e5c02d47b54e59ab0387a29f16c5a3cb2fc | |
parent | 67b9cc8e6072a919d2ed7e7ecc8124c8acfb3733 (diff) | |
download | cpython-git-e6a4755e6793942b950c1595e0c34bd66a0ee13e.tar.gz |
bpo-34217: Use lowercase for windows headers (GH-8472)
-rw-r--r-- | Modules/_io/_iomodule.c | 2 | ||||
-rw-r--r-- | Modules/socketmodule.c | 2 | ||||
-rw-r--r-- | Tools/msi/bundle/bootstrap/pch.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Modules/_io/_iomodule.c b/Modules/_io/_iomodule.c index 667446526a..0d8a638f40 100644 --- a/Modules/_io/_iomodule.c +++ b/Modules/_io/_iomodule.c @@ -21,7 +21,7 @@ #endif /* HAVE_SYS_STAT_H */ #ifdef MS_WINDOWS -#include <Windows.h> +#include <windows.h> #endif /* Various interned strings */ diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 30001754fe..3a439c4bfa 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -303,7 +303,7 @@ http://cvsweb.netbsd.org/bsdweb.cgi/src/lib/libc/net/getaddrinfo.c.diff?r1=1.82& # endif /* Provides the IsWindows7SP1OrGreater() function */ -#include <VersionHelpers.h> +#include <versionhelpers.h> /* remove some flags on older version Windows during run-time. https://msdn.microsoft.com/en-us/library/windows/desktop/ms738596.aspx */ diff --git a/Tools/msi/bundle/bootstrap/pch.h b/Tools/msi/bundle/bootstrap/pch.h index 6a66fa5a51..b0aa5111da 100644 --- a/Tools/msi/bundle/bootstrap/pch.h +++ b/Tools/msi/bundle/bootstrap/pch.h @@ -15,7 +15,7 @@ #include <windows.h> #include <gdiplus.h> -#include <Uxtheme.h> +#include <uxtheme.h> #include <msiquery.h> #include <objbase.h> #include <shlobj.h> |