Saved and restored logging._handlerList at the same time as saving/restoring logging...
[python.git] / Include / bufferobject.h
blobed2c91db5f6b3287da7166e6232d2df44e42d265
2 /* Buffer object interface */
4 /* Note: the object's structure is private */
6 #ifndef Py_BUFFEROBJECT_H
7 #define Py_BUFFEROBJECT_H
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
13 PyAPI_DATA(PyTypeObject) PyBuffer_Type;
15 #define PyBuffer_Check(op) ((op)->ob_type == &PyBuffer_Type)
17 #define Py_END_OF_BUFFER (-1)
19 PyAPI_FUNC(PyObject *) PyBuffer_FromObject(PyObject *base,
20 int offset, int size);
21 PyAPI_FUNC(PyObject *) PyBuffer_FromReadWriteObject(PyObject *base,
22 int offset,
23 int size);
25 PyAPI_FUNC(PyObject *) PyBuffer_FromMemory(void *ptr, int size);
26 PyAPI_FUNC(PyObject *) PyBuffer_FromReadWriteMemory(void *ptr, int size);
28 PyAPI_FUNC(PyObject *) PyBuffer_New(int size);
30 #ifdef __cplusplus
32 #endif
33 #endif /* !Py_BUFFEROBJECT_H */