There was an error while loading. Please reload this page.
1 parent d71c7bc commit f4afc53Copy full SHA for f4afc53
2 files changed
.github/workflows/build.yml
@@ -95,6 +95,8 @@ jobs:
95
runs-on: windows-latest
96
needs: check_source
97
if: needs.check_source.outputs.run_tests == 'true'
98
+ env:
99
+ IncludeUwp: 'true'
100
steps:
101
- uses: actions/checkout@v2
102
- name: Build CPython
@@ -109,6 +111,8 @@ jobs:
109
111
110
112
113
114
115
116
117
118
- name: Register MSVC problem matcher
Include/cpython/initconfig.h
@@ -1,6 +1,9 @@
1
#ifndef Py_PYCORECONFIG_H
2
#define Py_PYCORECONFIG_H
3
#ifndef Py_LIMITED_API
4
+#ifdef __cplusplus
5
+extern "C" {
6
+#endif
7
8
/* --- PyStatus ----------------------------------------------- */
9
@@ -243,5 +246,8 @@ PyAPI_FUNC(PyStatus) PyConfig_SetWideStringList(PyConfig *config,
243
246
See also PyConfig.orig_argv. */
244
247
PyAPI_FUNC(void) Py_GetArgcArgv(int *argc, wchar_t ***argv);
245
248
249
250
+}
251
252
#endif /* !Py_LIMITED_API */
253
#endif /* !Py_PYCORECONFIG_H */
0 commit comments