Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Reset build tags. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | interopParams2 |
Files: | files | file ages | folders |
SHA1: |
e452a35bb36ee1de5116e251183ed4b6 |
User & Date: | mistachkin 2014-11-14 01:31:56.999 |
Context
2014-11-14
| ||
17:36 | Fix line endings. Closed-Leaf check-in: 125975d3fa user: mistachkin tags: interopParams2 | |
01:31 | Reset build tags. check-in: e452a35bb3 user: mistachkin tags: interopParams2 | |
01:28 | Revise a minor merge issue from the previous check-in. check-in: c2bccd5229 user: mistachkin tags: interopParams2 | |
Changes
Changes to SQLite.Interop/src/win/interop.h.
1 2 3 4 5 6 7 8 9 10 11 12 | /* * interop.h - * * Written by Joe Mistachkin. * Released to the public domain, use at your own risk! */ #ifndef INTEROP_VERSION #define INTEROP_VERSION "1.0.95.0" #endif #ifndef INTEROP_SOURCE_ID | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | /* * interop.h - * * Written by Joe Mistachkin. * Released to the public domain, use at your own risk! */ #ifndef INTEROP_VERSION #define INTEROP_VERSION "1.0.95.0" #endif #ifndef INTEROP_SOURCE_ID #define INTEROP_SOURCE_ID "0000000000000000000000000000000000000000" #endif #ifndef INTEROP_SOURCE_TIMESTAMP #define INTEROP_SOURCE_TIMESTAMP "0000-00-00 00:00:00 UTC" #endif |
Changes to System.Data.SQLite/SQLitePatchLevel.cs.
1 2 3 4 5 6 7 8 9 10 11 | /******************************************************** * ADO.NET 2.0 Data Provider for SQLite Version 3.X * Written by Joe Mistachkin (joe@mistachkin.com) * * Released to the public domain, use at your own risk! ********************************************************/ using System.Data.SQLite; /////////////////////////////////////////////////////////////////////////////// | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | /******************************************************** * ADO.NET 2.0 Data Provider for SQLite Version 3.X * Written by Joe Mistachkin (joe@mistachkin.com) * * Released to the public domain, use at your own risk! ********************************************************/ using System.Data.SQLite; /////////////////////////////////////////////////////////////////////////////// [assembly: AssemblySourceId(null)] /////////////////////////////////////////////////////////////////////////////// [assembly: AssemblySourceTimeStamp(null)] |