System.Data.SQLite

Check-in [cb13e676d0]
Login

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

Overview
Comment:Temporary fix for CE
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | sourceforge
Files: files | file ages | folders
SHA1: cb13e676d0faa078f0b6262ae332ee47541bfde2
User & Date: rmsimpson 2007-01-10 18:50:09.000
Context
2007-01-10
18:58
1.0.39.0 check-in: a9cc9e2eba user: rmsimpson tags: sourceforge
18:50
Temporary fix for CE check-in: cb13e676d0 user: rmsimpson tags: sourceforge
16:04
1.0.39.0 check-in: b5149d055f user: rmsimpson tags: sourceforge
Changes
Side-by-Side Diff Ignore Whitespace Patch
Changes to SQLite.Interop/src/os_win.c.
36
37
38
39
40
41
42

43
44
45
46
47
48
49
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50







+








/*
** Determine if we are dealing with WindowsCE - which has a much
** reduced API.
*/
#if defined(_WIN32_WCE)
# define OS_WINCE 1
#define AreFileApisANSI() 1
#else
# define OS_WINCE 0
#endif

/*
** WinCE lacks native support for file locking so we have to fake it
** with some code of our own.