pycore_pathconfig.h 606 B

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