1 #ifndef Py_INTERNAL_PATHCONFIG_H
2 #define Py_INTERNAL_PATHCONFIG_H
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
6 
7 #ifndef Py_BUILD_CORE
8 #  error "this header requires Py_BUILD_CORE define"
9 #endif
10 
11 PyAPI_FUNC(void) _PyPathConfig_ClearGlobal(void);
12 extern PyStatus _PyPathConfig_ReadGlobal(PyConfig *config);
13 extern PyStatus _PyPathConfig_UpdateGlobal(const PyConfig *config);
14 extern const wchar_t * _PyPathConfig_GetGlobalModuleSearchPath(void);
15 
16 extern 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