aboutsummaryrefslogtreecommitdiff
path: root/sqlite3.go
diff options
context:
space:
mode:
Diffstat (limited to 'sqlite3.go')
-rw-r--r--sqlite3.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/sqlite3.go b/sqlite3.go
index 4d197f1..40458b5 100644
--- a/sqlite3.go
+++ b/sqlite3.go
@@ -5,6 +5,14 @@ package sqlite
#include <stdlib.h>
#include <string.h>
+#ifndef SQLITE_OPEN_READWRITE
+# define SQLITE_OPEN_READWRITE 0
+#endif
+
+#ifndef SQLITE_OPEN_FULLMUTEX
+# define SQLITE_OPEN_FULLMUTEX 0
+#endif
+
static int
_sqlite3_open_v2(const char *filename, sqlite3 **ppDb, int flags, const char *zVfs) {
#ifdef SQLITE_OPEN_URI