-remove unrelated and unused information from the WINSTATION_OBJECT

svn path=/trunk/; revision=55842
This commit is contained in:
Giannis Adamopoulos 2012-02-24 15:32:13 +00:00
parent 5bd20ac181
commit 419f51fd4c
2 changed files with 0 additions and 17 deletions

View file

@ -25,24 +25,9 @@ typedef struct _WINSTATION_OBJECT
LIST_ENTRY DesktopListHead;
PRTL_ATOM_TABLE AtomTable;
HANDLE SystemMenuTemplate;
UINT CaretBlinkRate;
HANDLE ShellWindow;
HANDLE ShellListView;
/* Effects */
BOOL FontSmoothing; /* Enable */
UINT FontSmoothingType; /* 1:Standard,2:ClearType */
/* FIXME: Big Icons (SPI_GETICONMETRICS?) */
BOOL DropShadow;
BOOL DragFullWindows;
BOOL FlatMenu;
/* ScreenSaver */
BOOL ScreenSaverRunning;
UINT ScreenSaverTimeOut;
/* Should this be on each desktop ? */
BOOL ScreenSaverActive;
/* Wallpaper */
HANDLE hbmWallpaper;
ULONG cxWallpaper, cyWallpaper;

View file

@ -424,8 +424,6 @@ NtUserCreateWindowStation(
Status = RtlCreateAtomTable(37, &WindowStationObject->AtomTable);
WindowStationObject->SystemMenuTemplate = (HANDLE)0;
WindowStationObject->Name = WindowStationName;
WindowStationObject->ScreenSaverRunning = FALSE;
WindowStationObject->FlatMenu = FALSE;
if (InputWindowStation == NULL)
{