diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-05-18 02:17:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-18 02:17:01 (GMT) |
commit | 410759fba80aded5247b693c60745aa16906f3bb (patch) | |
tree | fd520f89cfd501f12bdaccab77ddb965ba984f20 /Include | |
parent | bab0db6076900cd828588be8595b3cdfade7e7e9 (diff) | |
download | cpython-410759fba80aded5247b693c60745aa16906f3bb.zip cpython-410759fba80aded5247b693c60745aa16906f3bb.tar.gz cpython-410759fba80aded5247b693c60745aa16906f3bb.tar.bz2 |
bpo-36763: Remove _PyCoreConfig.dll_path (GH-13402)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/cpython/coreconfig.h | 3 | ||||
-rw-r--r-- | Include/internal/pycore_pathconfig.h | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Include/cpython/coreconfig.h b/Include/cpython/coreconfig.h index ca71c15..a71f161 100644 --- a/Include/cpython/coreconfig.h +++ b/Include/cpython/coreconfig.h @@ -353,9 +353,6 @@ typedef struct { wchar_t *base_prefix; /* sys.base_prefix */ wchar_t *exec_prefix; /* sys.exec_prefix */ wchar_t *base_exec_prefix; /* sys.base_exec_prefix */ -#ifdef MS_WINDOWS - wchar_t *dll_path; /* Windows DLL path */ -#endif /* --- Parameter only used by Py_Main() ---------- */ diff --git a/Include/internal/pycore_pathconfig.h b/Include/internal/pycore_pathconfig.h index 9eb8e88..bee3911 100644 --- a/Include/internal/pycore_pathconfig.h +++ b/Include/internal/pycore_pathconfig.h @@ -53,6 +53,10 @@ PyAPI_FUNC(int) _Py_FindEnvConfigValue( wchar_t *value, size_t value_size); +#ifdef MS_WINDOWS +extern wchar_t* _Py_GetDLLPath(void); +#endif + #ifdef __cplusplus } #endif |