kernel32: Only print a fixme once for FlushProcessWriteBuffers.

This commit is contained in:
Austin English 2012-05-02 17:00:36 -05:00 committed by Alexandre Julliard
parent e9dc02eaa3
commit b4432a6274
1 changed files with 4 additions and 1 deletions

View File

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