From 958ae44599917be9507f27ea185a0d53e6ed839b Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Sun, 9 Dec 2018 22:00:53 +0100 Subject: [PATCH] [WIN32SS] Shhhhh! --- win32ss/user/ntuser/ghost.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/win32ss/user/ntuser/ghost.c b/win32ss/user/ntuser/ghost.c index f7a2235c0a7..726fe8ff3d8 100644 --- a/win32ss/user/ntuser/ghost.c +++ b/win32ss/user/ntuser/ghost.c @@ -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; }