Skip to content

Instantly share code, notes, and snippets.

@anujb
Created August 5, 2011 23:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anujb/1128731 to your computer and use it in GitHub Desktop.
Save anujb/1128731 to your computer and use it in GitHub Desktop.
#if MONOTOUCH
[DllImport("sqlite3", EntryPoint = "sqlite3_open")]
public static extern Result Open(string filename, out IntPtr db);
...
...
...
#else
[DllImport("sqlite3", EntryPoint = "sqlite3_open", CallingConvention = CallingConvention.Cdecl)]
public static extern Result Open(string filename, out IntPtr db);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment