File indexing completed on 2025-11-19 09:50:48
0001 #ifndef Py_INTERNAL_MEMORYOBJECT_H
0002 #define Py_INTERNAL_MEMORYOBJECT_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 extern PyTypeObject _PyManagedBuffer_Type;
0012
0013 PyObject *
0014 _PyMemoryView_FromBufferProc(PyObject *v, int flags,
0015 getbufferproc bufferproc);
0016
0017 #ifdef __cplusplus
0018 }
0019 #endif
0020 #endif