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; }