reactos/win32ss/user/ntuser/ghost.c
Joachim Henze 055c51aaf2 [0.4.11][WIN32SS] Silence ghosting logging even more
This logging is uninteresting even upon first call.
Ftr we did not invest a static variable for that in 0.4.10 where ghosting was not implemented at all
and we did not invest a static variable for that in 0.4.12 where we began to implement it
and we should not invest that variable for 0.4.11 where we stubbed it just.

That logging in 0.4.11 won't help us for anything, neither one or n times logged.

Addendum to 0.4.11-RC-5-g 996250e
2020-12-21 01:03:00 +01:00

18 lines
464 B
C

/*
* PROJECT: ReactOS user32.dll
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
* PURPOSE: Window ghosting feature
* COPYRIGHT: Copyright 2018 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
*/
#include <win32k.h>
BOOL FASTCALL IntGoGhost(PWND Window, BOOL bGo)
{
// TODO:
// 1. Create a thread.
// 2. Create a ghost window in the thread.
// 3. Do message loop in the thread
return FALSE;
}