[WIN32SS] Shhhhh!
[reactos.git] / win32ss / user / ntuser / ghost.c
1 /*
2 * PROJECT: ReactOS user32.dll
3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
4 * PURPOSE: Ghost window handling
5 * COPYRIGHT: Copyright 2018 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
6 */
7
8 #include <win32k.h>
9
10 BOOL FASTCALL IntGoGhost(PWND Window, BOOL bGo)
11 {
12 // TODO:
13 // 1. Create a thread.
14 // 2. Create a ghost window in the thread.
15 // 3. Do message loop in the thread
16 static int bWarnedOnce = 0;
17 if (!bWarnedOnce)
18 {
19 bWarnedOnce++;
20 STUB;
21 }
22 return FALSE;
23 }