mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 19:26:16 +00:00
Match Wine behavior for AllowSetForegroundWindow
Only show the debug message once svn path=/trunk/; revision=35139
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user