Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #ifndef Py_INTERNAL_PYBUFFER_H
0002 #define Py_INTERNAL_PYBUFFER_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 
0012 // Exported for the _interpchannels module.
0013 PyAPI_FUNC(int) _PyBuffer_ReleaseInInterpreter(
0014         PyInterpreterState *interp, Py_buffer *view);
0015 PyAPI_FUNC(int) _PyBuffer_ReleaseInInterpreterAndRawFree(
0016         PyInterpreterState *interp, Py_buffer *view);
0017 
0018 #ifdef __cplusplus
0019 }
0020 #endif
0021 #endif /* !Py_INTERNAL_PYBUFFER_H */