diff --git a/Xamarin.MacDev/SQLite.cs b/Xamarin.MacDev/SQLite.cs index 837d905..00dbd94 100644 --- a/Xamarin.MacDev/SQLite.cs +++ b/Xamarin.MacDev/SQLite.cs @@ -2699,9 +2699,6 @@ public enum ConfigOption : int { } #if !USE_CSHARP_SQLITE && !USE_WP8_NATIVE_SQLITE - [DllImport ("sqlite3", EntryPoint = "sqlite3_open", CallingConvention = CallingConvention.Cdecl)] - public static extern Result Open ([MarshalAs (UnmanagedType.LPStr)] string filename, out IntPtr db); - [DllImport ("sqlite3", EntryPoint = "sqlite3_open_v2", CallingConvention = CallingConvention.Cdecl)] public static extern Result Open ([MarshalAs (UnmanagedType.LPStr)] string filename, out IntPtr db, int flags, IntPtr zvfs);