From 419f51fd4c95b58a1297094d3af74e502b4674fa Mon Sep 17 00:00:00 2001 From: Giannis Adamopoulos Date: Fri, 24 Feb 2012 15:32:13 +0000 Subject: [PATCH] [win32k] -remove unrelated and unused information from the WINSTATION_OBJECT svn path=/trunk/; revision=55842 --- reactos/subsystems/win32/win32k/include/winsta.h | 15 --------------- reactos/subsystems/win32/win32k/ntuser/winsta.c | 2 -- 2 files changed, 17 deletions(-) diff --git a/reactos/subsystems/win32/win32k/include/winsta.h b/reactos/subsystems/win32/win32k/include/winsta.h index b8387f359b6..ed0c75c6255 100644 --- a/reactos/subsystems/win32/win32k/include/winsta.h +++ b/reactos/subsystems/win32/win32k/include/winsta.h @@ -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; diff --git a/reactos/subsystems/win32/win32k/ntuser/winsta.c b/reactos/subsystems/win32/win32k/ntuser/winsta.c index b4f884db11e..2a5ac8d0a18 100644 --- a/reactos/subsystems/win32/win32k/ntuser/winsta.c +++ b/reactos/subsystems/win32/win32k/ntuser/winsta.c @@ -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) {