Module: wine Branch: master Commit: bb254fce23a473e3c1d4b560c788024f7bc258e1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=bb254fce23a473e3c1d4b560c7...
Author: Detlef Riekenberg wine.dev@web.de Date: Sat Jul 21 18:25:39 2012 +0200
apphelp: Implement ApphelpCheckShellObject.
---
dlls/apphelp/apphelp.c | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/dlls/apphelp/apphelp.c b/dlls/apphelp/apphelp.c index 9394cf3..7ef1a41 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,7 @@ 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 = 0; return TRUE; }