Copied the 89 uncopied AI*SimulationUtility/extension files defining the AIVirtualCard/AIVirtualField extension methods; the compile loop then auto-closed the revealed type deps (~3049 files total, drift-clean). 10.0k -> 62 errors.
73 lines
2.4 KiB
C#
73 lines
2.4 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Sqlite3Plugin;
|
|
|
|
public static class Sqlite3LibImport
|
|
{
|
|
private const string LibraryName = "libsqlite3";
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_open(byte[] zFilename, out IntPtr ppDB);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_open_v2(byte[] zFilename, out IntPtr ppDB, int flags, byte[] zVfs);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_close(IntPtr db);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_exec(IntPtr db, byte[] zSql, IntPtr xCallback, IntPtr pArg, out IntPtr pzErrMsg);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_prepare_v2(IntPtr db, byte[] zSql, int nBytes, out IntPtr ppStmt, IntPtr pzTail);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_bind_text(IntPtr pStmt, int i, byte[] zData, int nData, IntPtr xDel);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_bind_int(IntPtr pStmt, int i, int iValue);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_bind_double(IntPtr pStmt, int i, double rValue);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_bind_null(IntPtr pStmt, int i);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_reset(IntPtr pStmt);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_step(IntPtr pStmt);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_finalize(IntPtr pStmt);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_column_int(IntPtr pStmt, int i);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern double sqlite3_column_double(IntPtr pStmt, int i);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_column_bytes(IntPtr pStmt, int i);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern IntPtr sqlite3_column_blob(IntPtr pStmt, int i);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern IntPtr sqlite3_column_text(IntPtr pStmt, int i);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_column_type(IntPtr pStmt, int i);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_vfs_register(IntPtr pStmt, int makeDflt);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern int sqlite3_vfs_unregister(IntPtr pVfs);
|
|
|
|
[DllImport("libsqlite3")]
|
|
public static extern IntPtr sqlite3_vfs_find(byte[] zVfsName);
|
|
}
|