You've already forked linux-packaging-mono
Imported Upstream version 4.3.2.467
Former-commit-id: 9c2cb47f45fa221e661ab616387c9cda183f283d
This commit is contained in:
@@ -135,6 +135,13 @@ namespace Mono.Data.Sqlite
|
||||
[DllImport(SQLITE_DLL)]
|
||||
#endif
|
||||
internal static extern int sqlite3_close(IntPtr db);
|
||||
|
||||
#if !PLATFORM_COMPACTFRAMEWORK
|
||||
[DllImport(SQLITE_DLL, CallingConvention = CallingConvention.Cdecl)]
|
||||
#else
|
||||
[DllImport(SQLITE_DLL)]
|
||||
#endif
|
||||
internal static extern int sqlite3_close_v2(IntPtr db);
|
||||
|
||||
#if !PLATFORM_COMPACTFRAMEWORK
|
||||
[DllImport(SQLITE_DLL, CallingConvention = CallingConvention.Cdecl)]
|
||||
@@ -193,6 +200,8 @@ namespace Mono.Data.Sqlite
|
||||
#endif
|
||||
internal static extern IntPtr sqlite3_bind_parameter_name(IntPtr stmt, int index);
|
||||
|
||||
// Apple does not include those symbols in it's libsqlite3
|
||||
#if !MONOTOUCH
|
||||
#if !PLATFORM_COMPACTFRAMEWORK
|
||||
[DllImport(SQLITE_DLL, CallingConvention = CallingConvention.Cdecl)]
|
||||
#else
|
||||
@@ -206,6 +215,7 @@ namespace Mono.Data.Sqlite
|
||||
[DllImport(SQLITE_DLL)]
|
||||
#endif
|
||||
internal static extern IntPtr sqlite3_column_database_name16(IntPtr stmt, int index);
|
||||
#endif
|
||||
|
||||
#if !PLATFORM_COMPACTFRAMEWORK
|
||||
[DllImport(SQLITE_DLL, CallingConvention = CallingConvention.Cdecl)]
|
||||
@@ -235,6 +245,7 @@ namespace Mono.Data.Sqlite
|
||||
#endif
|
||||
internal static extern IntPtr sqlite3_column_name16(IntPtr stmt, int index);
|
||||
|
||||
#if !MONOTOUCH
|
||||
#if !PLATFORM_COMPACTFRAMEWORK
|
||||
[DllImport(SQLITE_DLL, CallingConvention = CallingConvention.Cdecl)]
|
||||
#else
|
||||
@@ -262,6 +273,7 @@ namespace Mono.Data.Sqlite
|
||||
[DllImport(SQLITE_DLL)]
|
||||
#endif
|
||||
internal static extern IntPtr sqlite3_column_table_name16(IntPtr stmt, int index);
|
||||
#endif // !MONOTOUCH
|
||||
|
||||
#if !PLATFORM_COMPACTFRAMEWORK
|
||||
[DllImport(SQLITE_DLL, CallingConvention = CallingConvention.Cdecl)]
|
||||
@@ -639,6 +651,7 @@ namespace Mono.Data.Sqlite
|
||||
#endif
|
||||
internal static extern void sqlite3_result_text16(IntPtr context, string strName, int nLen, IntPtr pvReserved);
|
||||
|
||||
#if !MONOTOUCH
|
||||
#if !PLATFORM_COMPACTFRAMEWORK
|
||||
[DllImport(SQLITE_DLL, CallingConvention = CallingConvention.Cdecl)]
|
||||
#else
|
||||
@@ -652,6 +665,7 @@ namespace Mono.Data.Sqlite
|
||||
[DllImport(SQLITE_DLL)]
|
||||
#endif
|
||||
internal static extern int sqlite3_rekey(IntPtr db, byte[] key, int keylen);
|
||||
#endif
|
||||
|
||||
#if !PLATFORM_COMPACTFRAMEWORK
|
||||
[DllImport(SQLITE_DLL, CallingConvention = CallingConvention.Cdecl)]
|
||||
|
||||
Reference in New Issue
Block a user