Commit 58bb2608 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

apphelp: Add a stub for ShimFlushCache.

parent 7892df6f
......@@ -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;
}
......@@ -164,4 +164,4 @@
@ stub SetPermLayers
@ stub ShimDbgPrint
@ stub ShimDumpCache
@ stub ShimFlushCache
@ stdcall ShimFlushCache(ptr ptr str long)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment