kernel32: Add a stub for FlushProcessWriteBuffers.
This commit is contained in:
parent
4c0f0281bd
commit
80ef24b057
|
@ -409,6 +409,7 @@
|
||||||
@ stdcall FlushConsoleInputBuffer(long)
|
@ stdcall FlushConsoleInputBuffer(long)
|
||||||
@ stdcall FlushFileBuffers(long)
|
@ stdcall FlushFileBuffers(long)
|
||||||
@ stdcall FlushInstructionCache(long long long)
|
@ stdcall FlushInstructionCache(long long long)
|
||||||
|
@ stdcall FlushProcessWriteBuffers()
|
||||||
@ stdcall FlushViewOfFile(ptr long)
|
@ stdcall FlushViewOfFile(ptr long)
|
||||||
@ stdcall FoldStringA(long str long ptr long)
|
@ stdcall FoldStringA(long str long ptr long)
|
||||||
@ stdcall FoldStringW(long wstr 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);
|
FIXME("(%p %p %p): stub\n", process, flags, permanent);
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**********************************************************************
|
||||||
|
* FlushProcessWriteBuffers (KERNEL32.@)
|
||||||
|
*/
|
||||||
|
VOID WINAPI FlushProcessWriteBuffers(void)
|
||||||
|
{
|
||||||
|
FIXME(": stub\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue