mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[0.4.11] [WIN32SS] Shhhhh! CORE-11944
This silences log-spam from recently added STUB-call of IntGoGhost()
which gets called very frequently currently, e.g. during
our currently pseudo-async network transfers
cherry picked from commit 0.4.12-dev-8-g
958ae44599
This commit is contained in:
parent
a36ed7afc6
commit
996250ef93
1 changed files with 6 additions and 1 deletions
|
@ -13,6 +13,11 @@ BOOL FASTCALL IntGoGhost(PWND Window, BOOL bGo)
|
|||
// 1. Create a thread.
|
||||
// 2. Create a ghost window in the thread.
|
||||
// 3. Do message loop in the thread
|
||||
STUB;
|
||||
static int bWarnedOnce = 0;
|
||||
if (!bWarnedOnce)
|
||||
{
|
||||
bWarnedOnce++;
|
||||
STUB;
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue