mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
21 lines
484 B
C
21 lines
484 B
C
|
/*
|
||
|
* PROJECT: ReactOS header
|
||
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
||
|
* PURPOSE: Ghost window
|
||
|
* COPYRIGHT: Copyright 2018 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
|
||
|
*/
|
||
|
#ifndef REACTOS_GHOST_WND_INCLUDED
|
||
|
#define REACTOS_GHOST_WND_INCLUDED
|
||
|
|
||
|
#define GHOSTCLASSNAME L"Ghost"
|
||
|
#define GHOST_PROP L"GhostProp"
|
||
|
|
||
|
typedef struct GHOST_DATA
|
||
|
{
|
||
|
HWND hwndTarget;
|
||
|
HBITMAP hbm32bpp;
|
||
|
BOOL bDestroyTarget;
|
||
|
} GHOST_DATA;
|
||
|
|
||
|
#endif
|