Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bf8e9d1

Browse files
bpo-34217: Use lowercase for windows headers (GH-8472)
(cherry picked from commit e6a4755) Co-authored-by: Erik Janssens <[email protected]>
1 parent 962051e commit bf8e9d1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Modules/_io/_iomodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#endif /* HAVE_SYS_STAT_H */
2222

2323
#ifdef MS_WINDOWS
24-
#include <Windows.h>
24+
#include <windows.h>
2525
#endif
2626

2727
/* Various interned strings */

Modules/socketmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ if_indextoname(index) -- return the corresponding interface name\n\
303303
# endif
304304

305305
/* Provides the IsWindows7SP1OrGreater() function */
306-
#include <VersionHelpers.h>
306+
#include <versionhelpers.h>
307307

308308
/* remove some flags on older version Windows during run-time.
309309
https://msdn.microsoft.com/en-us/library/windows/desktop/ms738596.aspx */

Tools/msi/bundle/bootstrap/pch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
#include <windows.h>
1717
#include <gdiplus.h>
18-
#include <Uxtheme.h>
18+
#include <uxtheme.h>
1919
#include <msiquery.h>
2020
#include <objbase.h>
2121
#include <shlobj.h>

0 commit comments

Comments
 (0)