我想使用 typedef struct sqlite3 sqlite3; 用于使用
int sqlite3_open(
const char *filename, /* Database filename (UTF-8) */
sqlite3 **ppDb /* OUT: SQLite db handle */
);
并传递 sqlite3 对象以打开数据库
package com.kosh.offline;
public class NativeLib {
static {
System.loadLibrary("sqlite3");
}
public native int sqlite3_open(String filename,Object sqlite3);
}
感谢您考虑