Commit b4432a62 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32: Only print a fixme once for FlushProcessWriteBuffers.

parent e9dc02ea
......@@ -3863,5 +3863,8 @@ BOOL WINAPI GetProcessDEPPolicy(HANDLE process, LPDWORD flags, PBOOL permanent)
*/
VOID WINAPI FlushProcessWriteBuffers(void)
{
FIXME(": stub\n");
static int once = 0;
if (!once++)
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