Skip to content

Commit be4f094

Browse files
committed
Fix include naming for cross build
1 parent 59162a9 commit be4f094

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Modules/posixmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9337,7 +9337,7 @@ os_setpgrp_impl(PyObject *module)
93379337

93389338
#ifdef MS_WINDOWS
93399339
#include <winternl.h>
9340-
#include <ProcessSnapshot.h>
9340+
#include <processsnapshot.h>
93419341

93429342
// The structure definition in winternl.h may be incomplete.
93439343
// This structure is the full version from the MSDN documentation.

PC/_wmimodule.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
#endif
1515

1616
#define _WIN32_DCOM
17-
#include <Windows.h>
17+
#include <windows.h>
1818
#include <comdef.h>
19-
#include <Wbemidl.h>
19+
#include <wbemidl.h>
2020
#include <propvarutil.h>
2121

2222
#include <Python.h>

0 commit comments

Comments
 (0)