| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -95,6 +95,8 @@ jobs: | |||
| 95 | 95 | runs-on: windows-latest | |
| 96 | 96 | needs: check_source | |
| 97 | 97 | if: needs.check_source.outputs.run_tests == 'true' | |
| 98 | + env: | ||
| 99 | + IncludeUwp: 'true' | ||
| 98 | 100 | steps: | |
| 99 | 101 | - uses: actions/checkout@v2 | |
| 100 | 102 | - name: Build CPython | |
@@ -109,6 +111,8 @@ jobs: | |||
| 109 | 111 | runs-on: windows-latest | |
| 110 | 112 | needs: check_source | |
| 111 | 113 | if: needs.check_source.outputs.run_tests == 'true' | |
| 114 | + env: | ||
| 115 | + IncludeUwp: 'true' | ||
| 112 | 116 | steps: | |
| 113 | 117 | - uses: actions/checkout@v2 | |
| 114 | 118 | - name: Register MSVC problem matcher | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,9 @@ | |||
| 1 | 1 | #ifndef Py_PYCORECONFIG_H | |
| 2 | 2 | #define Py_PYCORECONFIG_H | |
| 3 | 3 | #ifndef Py_LIMITED_API | |
| 4 | + #ifdef __cplusplus | ||
| 5 | + extern "C" { | ||
| 6 | + #endif | ||
| 4 | 7 | ||
| 5 | 8 | /* --- PyStatus ----------------------------------------------- */ | |
| 6 | 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 | + #ifdef __cplusplus | ||
| 250 | + } | ||
| 251 | + #endif | ||
| 246 | 252 | #endif /* !Py_LIMITED_API */ | |
| 247 | 253 | #endif /* !Py_PYCORECONFIG_H */ | |
| Back | FazBrowse Home | New Git URL |
0 commit comments