Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:06:46

0001 #ifndef Py_INTERNAL_PATHCONFIG_H
0002 #define Py_INTERNAL_PATHCONFIG_H
0003 #ifdef __cplusplus
0004 extern "C" {
0005 #endif
0006 
0007 #ifndef Py_BUILD_CORE
0008 #  error "this header requires Py_BUILD_CORE define"
0009 #endif
0010 
0011 PyAPI_FUNC(void) _PyPathConfig_ClearGlobal(void);
0012 extern PyStatus _PyPathConfig_ReadGlobal(PyConfig *config);
0013 extern PyStatus _PyPathConfig_UpdateGlobal(const PyConfig *config);
0014 extern const wchar_t * _PyPathConfig_GetGlobalModuleSearchPath(void);
0015 
0016 extern int _PyPathConfig_ComputeSysPath0(
0017     const PyWideStringList *argv,
0018     PyObject **path0);
0019 
0020 
0021 #ifdef __cplusplus
0022 }
0023 #endif
0024 #endif /* !Py_INTERNAL_PATHCONFIG_H */