kernel32: Add a stub for FlushProcessWriteBuffers.

This commit is contained in:
Austin English 2012-05-01 15:26:24 -05:00 committed by Alexandre Julliard
parent 4c0f0281bd
commit 80ef24b057
2 changed files with 9 additions and 1 deletions

View file

@ -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)

View file

@ -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");
}