2018-10-31 23:15:58 -03:00
|
|
|
#ifndef Py_INTERNAL_PATHCONFIG_H
|
|
|
|
#define Py_INTERNAL_PATHCONFIG_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-04-17 18:02:26 -03:00
|
|
|
#ifndef Py_BUILD_CORE
|
|
|
|
# error "this header requires Py_BUILD_CORE define"
|
2018-11-06 10:59:52 -04:00
|
|
|
#endif
|
|
|
|
|
2023-07-25 00:16:28 -03:00
|
|
|
// Export for '_testinternalcapi' shared extension
|
2021-12-02 20:08:42 -04:00
|
|
|
PyAPI_FUNC(void) _PyPathConfig_ClearGlobal(void);
|
2023-08-24 12:28:35 -03:00
|
|
|
|
2021-12-02 20:08:42 -04:00
|
|
|
extern PyStatus _PyPathConfig_ReadGlobal(PyConfig *config);
|
|
|
|
extern PyStatus _PyPathConfig_UpdateGlobal(const PyConfig *config);
|
|
|
|
extern const wchar_t * _PyPathConfig_GetGlobalModuleSearchPath(void);
|
2019-05-27 11:39:22 -03:00
|
|
|
|
|
|
|
extern int _PyPathConfig_ComputeSysPath0(
|
|
|
|
const PyWideStringList *argv,
|
2019-03-19 12:09:27 -03:00
|
|
|
PyObject **path0);
|
2019-05-17 23:17:01 -03:00
|
|
|
|
2019-09-20 20:02:56 -03:00
|
|
|
|
2018-10-31 23:15:58 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_INTERNAL_PATHCONFIG_H */
|