Austin English : wininet: Add a stub for RunOnceUrlCache.
Module: wine Branch: master Commit: 9536a9cc1b30d70874bb50aaf9b16afbcd443dc1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9536a9cc1b30d70874bb50aaf9... Author: Austin English <austinenglish(a)gmail.com> Date: Tue Nov 1 11:14:16 2011 -0700 wininet: Add a stub for RunOnceUrlCache. --- dlls/wininet/urlcache.c | 10 ++++++++++ dlls/wininet/wininet.spec | 2 +- 2 files changed, 11 insertions(+), 1 deletions(-) diff --git a/dlls/wininet/urlcache.c b/dlls/wininet/urlcache.c index cec5bbb..a217236 100644 --- a/dlls/wininet/urlcache.c +++ b/dlls/wininet/urlcache.c @@ -3925,3 +3925,13 @@ BOOL WINAPI IncrementUrlCacheHeaderData(DWORD index, LPDWORD data) FIXME("(%u, %p)\n", index, data); return FALSE; } + +/*********************************************************************** + * RunOnceUrlCache (WININET.@) + */ + +DWORD WINAPI RunOnceUrlCache(HWND hwnd, HINSTANCE hinst, LPSTR cmd, int cmdshow) +{ + FIXME("(%p, %p, %s, %d): stub\n", hwnd, hinst, debugstr_a(cmd), cmdshow); + return 0; +} diff --git a/dlls/wininet/wininet.spec b/dlls/wininet/wininet.spec index 82b0d7d..2773d4b 100644 --- a/dlls/wininet/wininet.spec +++ b/dlls/wininet/wininet.spec @@ -222,7 +222,7 @@ @ stdcall RetrieveUrlCacheEntryFileW(wstr ptr ptr long) @ stdcall RetrieveUrlCacheEntryStreamA(str ptr ptr long long) @ stdcall RetrieveUrlCacheEntryStreamW(wstr ptr ptr long long) -@ stub RunOnceUrlCache +@ stdcall RunOnceUrlCache(ptr ptr str long) @ stdcall SetUrlCacheConfigInfoA(ptr long) @ stdcall SetUrlCacheConfigInfoW(ptr long) @ stdcall SetUrlCacheEntryGroup(str long int64 ptr long ptr) SetUrlCacheEntryGroupA
participants (1)
-
Alexandre Julliard