diff options
Diffstat (limited to 'Modules/_sqlite/connection.h')
-rw-r--r-- | Modules/_sqlite/connection.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Modules/_sqlite/connection.h b/Modules/_sqlite/connection.h index 4f08a6d..11b3a80 100644 --- a/Modules/_sqlite/connection.h +++ b/Modules/_sqlite/connection.h @@ -32,6 +32,12 @@ #include "sqlite3.h" +typedef struct _callback_context +{ + PyObject *callable; + pysqlite_state *state; +} callback_context; + typedef struct { PyObject_HEAD |