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);
}
ご検討いただきありがとうございます