Word 2000 Error

Kevin DeKorte kdekorte at yahoo.com
Sun Mar 9 11:35:59 CST 2003


Uwe,

Here is one patch... But now there is a problem with 

fixme:seh:EXC_RtlRaiseException call to unimplemented function 
wininet.dll.GetUrlCacheConfigInfoA

So I could add the info to the spec file, but I am not sure what the arguments 
GetUrlCacheConfigInfoA should be.

Kevin


Index: dlls/wininet/urlcache.c
===================================================================
RCS file: /home/wine/wine/dlls/wininet/urlcache.c,v
retrieving revision 1.6
diff -u -r1.6 urlcache.c
--- dlls/wininet/urlcache.c	5 Dec 2002 19:54:40 -0000	1.6
+++ dlls/wininet/urlcache.c	9 Mar 2003 17:32:54 -0000
@@ -115,6 +115,19 @@
 }
 
 /***********************************************************************
+ *           GetUrlCacheEntryInfoW (WININET.@)
+ *
+ */
+BOOL WINAPI GetUrlCacheEntryInfoW(LPCWSTR lpszUrl,
+  LPINTERNET_CACHE_ENTRY_INFOW lpCacheEntry,
+  LPDWORD lpCacheEntrySize)
+{
+    FIXME("(%s) stub\n",lpszUrl);
+    SetLastError(ERROR_FILE_NOT_FOUND);
+    return FALSE;
+}
+
+/***********************************************************************
  *           GetUrlCacheEntryInfoExA (WININET.@)
  *
  */
Index: dlls/wininet/wininet.spec
===================================================================
RCS file: /home/wine/wine/dlls/wininet/wininet.spec,v
retrieving revision 1.31
diff -u -r1.31 wininet.spec
--- dlls/wininet/wininet.spec	28 Jan 2003 00:17:15 -0000	1.31
+++ dlls/wininet/wininet.spec	9 Mar 2003 17:32:54 -0000
@@ -53,9 +53,9 @@
 @ stub GetUrlCacheConfigInfoA
 @ stub GetUrlCacheConfigInfoW
 @ stdcall GetUrlCacheEntryInfoA(str ptr long) GetUrlCacheEntryInfoA
+@ stdcall GetUrlCacheEntryInfoW(str ptr long) GetUrlCacheEntryInfoW
 @ stdcall GetUrlCacheEntryInfoExA(str ptr ptr str ptr ptr long) 
GetUrlCacheEntryInfoExA
 @ stdcall GetUrlCacheEntryInfoExW(wstr ptr ptr wstr ptr ptr long) 
GetUrlCacheEntryInfoExW
-@ stub GetUrlCacheEntryInfoW
 @ stub GetUrlCacheHeaderData
 @ stub GopherCreateLocatorA
 @ stub GopherCreateLocatorW



More information about the wine-devel mailing list