1#ifndef Py_INTERNAL_PATHCONFIG_H 2#define Py_INTERNAL_PATHCONFIG_H 3#ifdef __cplusplus 4extern "C" { 5#endif 6 7#ifndef Py_BUILD_CORE 8# error "this header requires Py_BUILD_CORE define" 9#endif 10 11PyAPI_FUNC(void) _PyPathConfig_ClearGlobal(void); 12extern PyStatus _PyPathConfig_ReadGlobal(PyConfig *config); 13extern PyStatus _PyPathConfig_UpdateGlobal(const PyConfig *config); 14extern const wchar_t * _PyPathConfig_GetGlobalModuleSearchPath(void); 15 16extern int _PyPathConfig_ComputeSysPath0( 17 const PyWideStringList *argv, 18 PyObject **path0); 19 20 21#ifdef __cplusplus 22} 23#endif 24#endif /* !Py_INTERNAL_PATHCONFIG_H */ 25