Revert "[WIN32SS][USER32] Add codes for Ghost Window (#1100)" (#1110)

This reverts commit 1adefd180c. ReactOS wouldn't startup.
This commit is contained in:
Katayama Hirofumi MZ 2018-12-11 11:30:00 +09:00 committed by GitHub
parent 1adefd180c
commit 99b055a506
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 19 additions and 195 deletions

View file

@ -1,20 +0,0 @@
/*
* 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