Commit 80ef24b0 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32: Add a stub for FlushProcessWriteBuffers.

parent 4c0f0281
......@@ -409,6 +409,7 @@
@ stdcall FlushConsoleInputBuffer(long)
@ stdcall FlushFileBuffers(long)
@ stdcall FlushInstructionCache(long long long)
@ stdcall FlushProcessWriteBuffers()
@ stdcall FlushViewOfFile(ptr long)
@ stdcall FoldStringA(long str long ptr long)
@ stdcall FoldStringW(long wstr long ptr long)
......
......@@ -3856,5 +3856,12 @@ BOOL WINAPI GetProcessDEPPolicy(HANDLE process, LPDWORD flags, PBOOL permanent)
FIXME("(%p %p %p): stub\n", process, flags, permanent);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/**********************************************************************
* FlushProcessWriteBuffers (KERNEL32.@)
*/
VOID WINAPI FlushProcessWriteBuffers(void)
{
FIXME(": stub\n");
}
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