aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/jni/sqlite.h
blob: af19fcb8548b65d550b16164685a9a666e75b6ee (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef sqlite_h
#define sqlite_h

#include <jni.h>
#include "sqlite/sqlite3.h"

void throw_sqlite3_exception(JNIEnv* env, sqlite3 *handle, int errcode);
jint sqliteOnJNILoad(JavaVM *vm, void *reserved, JNIEnv *env);

#endif