Match Wine behavior for AllowSetForegroundWindow

Only show the debug message once


svn path=/trunk/; revision=35139
This commit is contained in:
Steven Edwards 2008-08-06 10:34:36 +00:00
parent 762c1e58de
commit 74c43744f4

View file

@ -46,8 +46,13 @@ User32CallSendAsyncProcForKernel(PVOID Arguments, ULONG ArgumentLength)
BOOL STDCALL
AllowSetForegroundWindow(DWORD dwProcessId)
{
UNIMPLEMENTED;
return(FALSE);
static BOOL show_message = TRUE;
if (show_message)
{
UNIMPLEMENTED;
show_message = FALSE;
}
return TRUE;
}