Files
fastwsgi/fastwsgi/filewrapper.h
2021-10-26 21:47:01 +02:00

13 lines
264 B
C

#include <Python.h>
typedef struct {
PyObject ob_base;
PyObject* filelike;
PyObject* blksize;
} FileWrapper;
PyTypeObject FileWrapper_Type;
#define FileWrapper_CheckExact(object) ((object)->ob_type == &FileWrapper_Type)
void FileWrapper_Init(void);