Index: src/os_win.c ================================================================== --- src/os_win.c +++ src/os_win.c @@ -10,11 +10,11 @@ ** ****************************************************************************** ** ** This file contains code that is specific to windows. ** -** $Id: os_win.c,v 1.129 2008/06/26 10:41:19 danielk1977 Exp $ +** $Id: os_win.c,v 1.130 2008/07/18 23:47:43 drh Exp $ */ #include "sqliteInt.h" #if SQLITE_OS_WIN /* This file is used for windows only */ @@ -1421,15 +1421,11 @@ return 0; } if( isNT() ){ h = LoadLibraryW((WCHAR*)zConverted); }else{ -#if SQLITE_OS_WINCE - return 0; -#else h = LoadLibraryA((char*)zConverted); -#endif } free(zConverted); return (void*)h; } static void winDlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut){