mirror of
https://github.com/DrKLO/Telegram.git
synced 2024-12-22 14:35:03 +01:00
9 lines
163 B
C
Executable file
9 lines
163 B
C
Executable file
#ifndef __SQLITE_H__
|
|
#define __SQLITE_H__
|
|
|
|
#include <jni.h>
|
|
#include "sqlite3.h"
|
|
|
|
void throw_sqlite3_exception(JNIEnv* env, sqlite3 *handle, int errcode);
|
|
|
|
#endif
|