You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
926 B
33 lines
926 B
|
|
/* Buffer object interface */ |
|
|
|
/* Note: the object's structure is private */ |
|
|
|
#ifndef Py_BUFFEROBJECT_H |
|
#define Py_BUFFEROBJECT_H |
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
|
|
PyAPI_DATA(PyTypeObject) PyBuffer_Type; |
|
|
|
#define PyBuffer_Check(op) ((op)->ob_type == &PyBuffer_Type) |
|
|
|
#define Py_END_OF_BUFFER (-1) |
|
|
|
PyAPI_FUNC(PyObject *) PyBuffer_FromObject(PyObject *base, |
|
int offset, int size); |
|
PyAPI_FUNC(PyObject *) PyBuffer_FromReadWriteObject(PyObject *base, |
|
int offset, |
|
int size); |
|
|
|
PyAPI_FUNC(PyObject *) PyBuffer_FromMemory(void *ptr, int size); |
|
PyAPI_FUNC(PyObject *) PyBuffer_FromReadWriteMemory(void *ptr, int size); |
|
|
|
PyAPI_FUNC(PyObject *) PyBuffer_New(int size); |
|
|
|
#ifdef __cplusplus |
|
} |
|
#endif |
|
#endif /* !Py_BUFFEROBJECT_H */
|
|
|