Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-11-19 09:50:49

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 // Export for '_testinternalcapi' shared extension
0012 PyAPI_FUNC(void) _PyPathConfig_ClearGlobal(void);
0013 
0014 extern PyStatus _PyPathConfig_ReadGlobal(PyConfig *config);
0015 extern PyStatus _PyPathConfig_UpdateGlobal(const PyConfig *config);
0016 extern const wchar_t * _PyPathConfig_GetGlobalModuleSearchPath(void);
0017 
0018 extern int _PyPathConfig_ComputeSysPath0(
0019     const PyWideStringList *argv,
0020     PyObject **path0);
0021 
0022 
0023 #ifdef __cplusplus
0024 }
0025 #endif
0026 #endif /* !Py_INTERNAL_PATHCONFIG_H */