URLMON: stub implementation for GetSoftwareUpdateInfo

Mike McCormack mike at codeweavers.com
Wed May 25 00:17:36 CDT 2005


ChangeLog:
* stub implementation for GetSoftwareUpdateInfo
-------------- next part --------------
Index: dlls/urlmon/umon.c
===================================================================
RCS file: /home/wine/wine/dlls/urlmon/umon.c,v
retrieving revision 1.53
diff -u -p -r1.53 umon.c
--- dlls/urlmon/umon.c	23 May 2005 09:53:21 -0000	1.53
+++ dlls/urlmon/umon.c	25 May 2005 05:18:39 -0000
@@ -1735,3 +1735,12 @@ HRESULT WINAPI HlinkNavigateString( IUnk
     return HlinkSimpleNavigateToString( 
                szTarget, NULL, NULL, pUnk, NULL, NULL, 0, 0 );
 }
+
+/***********************************************************************
+ *           GetSoftwareUpdateInfo (URLMON.@)
+ */
+HRESULT WINAPI GetSoftwareUpdateInfo( LPCWSTR szDistUnit, LPSOFTDISTINFO psdi )
+{
+    FIXME("%s %p\n", debugstr_w(szDistUnit), psdi );
+    return E_FAIL;
+}
Index: dlls/urlmon/urlmon.spec
===================================================================
RCS file: /home/wine/wine/dlls/urlmon/urlmon.spec,v
retrieving revision 1.34
diff -u -p -r1.34 urlmon.spec
--- dlls/urlmon/urlmon.spec	5 May 2005 09:50:57 -0000	1.34
+++ dlls/urlmon/urlmon.spec	25 May 2005 05:18:39 -0000
@@ -41,7 +41,7 @@
 @ stub GetClassURL
 @ stub GetComponentIDFromCLSSPEC
 @ stub GetMarkOfTheWeb
-@ stub GetSoftwareUpdateInfo
+@ stdcall GetSoftwareUpdateInfo(ptr ptr)
 @ stub HlinkGoBack
 @ stub HlinkGoForward
 @ stub HlinkNavigateMoniker


More information about the wine-patches mailing list