Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | More changes to support wince. (CVS 2876) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f3cbd995c845dc19596678d05844e069 |
User & Date: | drh 2006-01-06 20:40:28.000 |
Context
2006-01-06
| ||
21:09 | Additional changes for wince. (CVS 2877) (check-in: b10343d916 user: drh tags: trunk) | |
20:40 | More changes to support wince. (CVS 2876) (check-in: f3cbd995c8 user: drh tags: trunk) | |
20:22 | Additional efforts to get it to build on WinCE. (CVS 2875) (check-in: b45c076f0d user: drh tags: trunk) | |
Changes
Changes to src/os_win.c.
︙ | ︙ | |||
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | ** windows. If you do this and two or more connections attempt to ** write the database at the same time, the database file will be ** corrupted. But some versions of WindowsCE do not support locking, ** in which case compiling with this option is required just to get ** it to work at all. */ #ifdef SQLITE_OMIT_WIN_LOCKS # define LockFileEx(a,b,c,d,e,f) (1) # define UnlockFileEx(a,b,c,d,e) (1) #endif /* ** Convert a UTF-8 string to UTF-32. Space to hold the returned string ** is obtained from sqliteMalloc. */ | > > | 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | ** windows. If you do this and two or more connections attempt to ** write the database at the same time, the database file will be ** corrupted. But some versions of WindowsCE do not support locking, ** in which case compiling with this option is required just to get ** it to work at all. */ #ifdef SQLITE_OMIT_WIN_LOCKS # define LockFile(a,b,c,d,e) (1) # define LockFileEx(a,b,c,d,e,f) (1) # define UnlockFile(a,b,c,d,e) (1) # define UnlockFileEx(a,b,c,d,e) (1) #endif /* ** Convert a UTF-8 string to UTF-32. Space to hold the returned string ** is obtained from sqliteMalloc. */ |
︙ | ︙ |