[PATCH 2/3] apphelp: Implement ApphelpCheckShellObject

Detlef Riekenberg wine.dev at web.de
Sat Jul 21 11:25:39 CDT 2012


called by IE7

Wine has no patch management for shell objects,
so there is nothing to do in this function.

--
By by ... Detlef
---
 dlls/apphelp/apphelp.c |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/dlls/apphelp/apphelp.c b/dlls/apphelp/apphelp.c
index 9394cf3..0a97858 100644
--- a/dlls/apphelp/apphelp.c
+++ b/dlls/apphelp/apphelp.c
@@ -19,6 +19,8 @@
 #include <stdarg.h>
 #include "windef.h"
 #include "winbase.h"
+#include <appcompatapi.h>
+
 #include "wine/debug.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(apphelp);
@@ -70,6 +72,10 @@ PDB WINAPI SdbCreateDatabase( LPCWSTR path, PATH_TYPE type )
 
 BOOL WINAPI ApphelpCheckShellObject( REFCLSID clsid, BOOL shim, ULONGLONG *flags )
 {
-    FIXME("stub: %s %p\n", debugstr_guid(clsid), flags );
+    TRACE("(%s, %d, %p)\n", debugstr_guid(clsid), shim, flags);
+    if (flags)
+    {
+        *flags = 0ULL;
+    }
     return TRUE;
 }
-- 
1.7.5.4




More information about the wine-patches mailing list