Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | The delegates used for native callbacks from the SQLite core library must be marked as 'cdecl'. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sessions |
Files: | files | file ages | folders |
SHA1: |
bad97b09fc658fdbc3c5269f44fae6ae |
User & Date: | mistachkin 2017-10-09 16:09:46.500 |
Context
2017-10-10
| ||
01:26 | More adjustments for the INTEROP_SESSION_EXTENSION define. check-in: 51aeb4bf30 user: mistachkin tags: sessions | |
2017-10-09
| ||
16:09 | The delegates used for native callbacks from the SQLite core library must be marked as 'cdecl'. check-in: bad97b09fc user: mistachkin tags: sessions | |
2017-10-08
| ||
22:00 | Merge updates from trunk. check-in: 4919dd2ea9 user: mistachkin tags: sessions | |
Changes
Changes to System.Data.SQLite/UnsafeNativeMethods.cs.
︙ | ︙ | |||
3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 | #endif #endregion /////////////////////////////////////////////////////////////////////////// #region session extension #if INTEROP_SESSION_EXTENSION internal delegate int xSessionFilter(IntPtr context, byte[] tblName); internal delegate SQLiteChangeSetConflictResult xSessionConflict(IntPtr context, SQLiteChangeSetConflictType type, IntPtr iterator); internal delegate SQLiteErrorCode xSessionInput(IntPtr context, IntPtr pData, ref int nData); internal delegate SQLiteErrorCode xSessionOutput(IntPtr context, IntPtr pData, int nData); /////////////////////////////////////////////////////////////////////////// #if !PLATFORM_COMPACTFRAMEWORK [DllImport(SQLITE_DLL, CallingConvention = CallingConvention.Cdecl)] #else | > > > > > > > > > > > > > > > | 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 | #endif #endregion /////////////////////////////////////////////////////////////////////////// #region session extension #if INTEROP_SESSION_EXTENSION #if !PLATFORM_COMPACTFRAMEWORK [UnmanagedFunctionPointer(CallingConvention.Cdecl)] #endif internal delegate int xSessionFilter(IntPtr context, byte[] tblName); #if !PLATFORM_COMPACTFRAMEWORK [UnmanagedFunctionPointer(CallingConvention.Cdecl)] #endif internal delegate SQLiteChangeSetConflictResult xSessionConflict(IntPtr context, SQLiteChangeSetConflictType type, IntPtr iterator); #if !PLATFORM_COMPACTFRAMEWORK [UnmanagedFunctionPointer(CallingConvention.Cdecl)] #endif internal delegate SQLiteErrorCode xSessionInput(IntPtr context, IntPtr pData, ref int nData); #if !PLATFORM_COMPACTFRAMEWORK [UnmanagedFunctionPointer(CallingConvention.Cdecl)] #endif internal delegate SQLiteErrorCode xSessionOutput(IntPtr context, IntPtr pData, int nData); /////////////////////////////////////////////////////////////////////////// #if !PLATFORM_COMPACTFRAMEWORK [DllImport(SQLITE_DLL, CallingConvention = CallingConvention.Cdecl)] #else |
︙ | ︙ |