#ifndef PYPGF_FFI_H_ #define PYPGF_FFI_H_ #define PY_SSIZE_T_CLEAN #include #include typedef struct { PyObject_HEAD PgfDB *db; PgfRevision revision; } PGFObject; PyObject *PGFError; PgfExnType handleError(PgfExn err); PgfText *PyUnicode_AsPgfText(PyObject *pystr); PyObject *PyUnicode_FromPgfText(PgfText *text); PgfTypeHypo *PyList_AsHypos(PyObject *pylist, Py_ssize_t *n_hypos); PgfUnmarshaller unmarshaller; PgfMarshaller marshaller; #endif // PYPGF_FFI_H_