1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-15 11:41:13 +03:00

Additional changes for wince. (CVS 2877)

FossilOrigin-Name: b10343d9163263f97efb1bbc61af8307a2cfe8a4
This commit is contained in:
drh
2006-01-06 21:09:01 +00:00
parent e2a926b807
commit 9e9fe6f877
3 changed files with 10 additions and 10 deletions

View File

@@ -55,7 +55,7 @@ struct winFile {
unsigned char locktype; /* Type of lock currently held on this file */
short sharedLockByte; /* Randomly chosen byte used as a shared lock */
#if OS_WINCE
char *zDeleteOnClose; /* Name of file to delete when closing */
WCHAR *zDeleteOnClose; /* Name of file to delete when closing */
#endif
};
@@ -382,7 +382,7 @@ int sqlite3WinOpenExclusive(const char *zFilename, OsFile **pId, int delFlag){
f.locktype = NO_LOCK;
f.sharedLockByte = 0;
#if OS_WINCE
f.zDeleteOnClose = delFlag ? sqlite3StrDup(zFilename) : 0;
f.zDeleteOnClose = delFlag ? utf8ToUnicode(zFilename) : 0;
#endif
TRACE3("OPEN EX %d \"%s\"\n", h, zFilename);
return allocateWinFile(&f, pId);
@@ -517,7 +517,7 @@ static int winClose(OsFile **pId){
CloseHandle(pFile->h);
#if OS_WINCE
if( pFile->zDeleteOnClose ){
DeleteFileW((WCHAR*)pFile->zDeleteOnClose);
DeleteFileW(pFile->zDeleteOnClose);
sqliteFree(pFile->zDeleteOnClose);
}
#endif