mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:23:01 +00:00
parent
f5f3ff86ea
commit
b09487fb44
5 changed files with 31 additions and 4 deletions
18
win32ss/user/ntuser/ghost.c
Normal file
18
win32ss/user/ntuser/ghost.c
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*
|
||||
* PROJECT: ReactOS user32.dll
|
||||
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
||||
* PURPOSE: Ghost window handling
|
||||
* 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
|
||||
STUB;
|
||||
return FALSE;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue