System.Data.SQLite

Check-in [de911e58d5]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix for clean compilation on Windows.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: de911e58d57e8d67fcac6123698ba58e41bc4d5f
User & Date: mistachkin 2016-03-22 21:54:15.563
Context
2016-03-22
22:33
Fix compilation issues with Clang. check-in: e700b1ba7a user: mistachkin tags: trunk
21:54
Fix for clean compilation on Windows. check-in: de911e58d5 user: mistachkin tags: trunk
21:50
Portability enhancements for the interop assembly. check-in: 8a3c530e99 user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to SQLite.Interop/src/win/interop.c.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/********************************************************
 * ADO.NET 2.0 Data Provider for SQLite Version 3.X
 * Written by Robert Simpson (robert@blackcastlesoft.com)
 *
 * Released to the public domain, use at your own risk!
 ********************************************************/

#if SQLITE_OS_WIN
#define SQLITE_API __declspec(dllexport)
#else
#define WINAPI
#endif

#include "../core/sqlite3.c"








|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/********************************************************
 * ADO.NET 2.0 Data Provider for SQLite Version 3.X
 * Written by Robert Simpson (robert@blackcastlesoft.com)
 *
 * Released to the public domain, use at your own risk!
 ********************************************************/

#ifdef _WIN32
#define SQLITE_API __declspec(dllexport)
#else
#define WINAPI
#endif

#include "../core/sqlite3.c"