apphelp: Add a stub for ShimFlushCache.

This commit is contained in:
Austin English 2013-12-02 15:58:46 -08:00 committed by Alexandre Julliard
parent 7892df6fac
commit 58bb260885
2 changed files with 8 additions and 1 deletions

View File

@ -74,3 +74,10 @@ BOOL WINAPI ApphelpCheckShellObject( REFCLSID clsid, BOOL shim, ULONGLONG *flags
if (flags) *flags = 0;
return TRUE;
}
BOOL WINAPI ShimFlushCache( HWND hwnd, HINSTANCE instance, LPCSTR cmdline, int cmd )
{
FIXME("stub: %p %p %s %u\n", hwnd, instance, debugstr_a(cmdline), cmd);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return TRUE;
}

View File

@ -164,4 +164,4 @@
@ stub SetPermLayers
@ stub ShimDbgPrint
@ stub ShimDumpCache
@ stub ShimFlushCache
@ stdcall ShimFlushCache(ptr ptr str long)