mirror of
https://github.com/DrKLO/Telegram.git
synced 2024-12-22 22:45:18 +01:00
10 lines
225 B
C
Executable file
10 lines
225 B
C
Executable file
#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
|