Skip to content
Snippets Groups Projects
Commit b4432a62 authored by Austin English's avatar Austin English Committed by Alexandre Julliard
Browse files

kernel32: Only print a fixme once for FlushProcessWriteBuffers.

parent e9dc02ea
No related branches found
No related tags found
No related merge requests found
......@@ -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");
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment