Fix func.go

This commit is contained in:
Gert-Jan Timmer 2018-06-26 16:33:03 +02:00
parent e36987aa09
commit c5e0c421d6
2 changed files with 4 additions and 4 deletions

View File

@ -25,10 +25,6 @@ package sqlite3
# define SQLITE_OPEN_FULLMUTEX 0
#endif
#ifndef SQLITE_DETERMINISTIC
# define SQLITE_DETERMINISTIC 0
#endif
static int
_sqlite3_open_v2(const char *filename, sqlite3 **ppDb, int flags, const char *zVfs) {
#ifdef SQLITE_OPEN_URI

View File

@ -18,6 +18,10 @@ package sqlite3
#include <stdio.h>
#include <stdint.h>
#ifndef SQLITE_DETERMINISTIC
# define SQLITE_DETERMINISTIC 0
#endif
void callbackTrampoline(sqlite3_context*, int, sqlite3_value**);
void stepTrampoline(sqlite3_context*, int, sqlite3_value**);
void doneTrampoline(sqlite3_context*);