In "dlls/wininet/tests/urlcache.c", GetDiskInfoA is called, but wininet.dll (native and wine) export this function only by ordinal.
When I build the crosstest, my mingw [i586-mingw32msvc-gcc (GCC) 4.2.1-sjlj (mingw32-2)] creates a named Import for GetDiskInfoA with an ordinal hint of 65.
Using that executable on Windows or Wine is not possible (Entry point not found for GetDiskInfoA)
The wininet_test.exe on winehq has an ordinal Import of 102 in that place.
How can we fix that?
(My patch to use an ordinal import in the test was dropped: http://www.winehq.org/pipermail/wine-patches/2009-May/073130.html )