[WIN32SS][USER32] Add codes for Ghost Window (#1100)
[reactos.git] / win32ss / include / ghostwnd.h
1 /*
2 * PROJECT: ReactOS header
3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
4 * PURPOSE: Ghost window
5 * COPYRIGHT: Copyright 2018 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
6 */
7 #ifndef REACTOS_GHOST_WND_INCLUDED
8 #define REACTOS_GHOST_WND_INCLUDED
9
10 #define GHOSTCLASSNAME L"Ghost"
11 #define GHOST_PROP L"GhostProp"
12
13 typedef struct GHOST_DATA
14 {
15 HWND hwndTarget;
16 HBITMAP hbm32bpp;
17 BOOL bDestroyTarget;
18 } GHOST_DATA;
19
20 #endif