Author: greatlrd
Date: Sun Jul 8 01:09:15 2007
New Revision: 27457
URL:
http://svn.reactos.org/svn/reactos?rev=27457&view=rev
Log:
move some value to right place into the text FIXME load from register
Modified:
trunk/reactos/subsystems/win32/win32k/ntuser/winsta.c
Modified: trunk/reactos/subsystems/win32/win32k/ntuser/winsta.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/nt…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntuser/winsta.c (original)
+++ trunk/reactos/subsystems/win32/win32k/ntuser/winsta.c Sun Jul 8 01:09:15 2007
@@ -498,8 +498,9 @@
/*
* Initialize the new window station object
*/
+
WindowStationObject->ScreenSaverRunning = FALSE;
- WindowStationObject->ScreenSaverTimeOut = 10 * 60;
+
WindowStationObject->FlatMenu = FALSE;
if(!(CurInfo = ExAllocatePool(PagedPool, sizeof(SYSTEM_CURSORINFO))))
@@ -516,12 +517,12 @@
CurInfo->CursorClipInfo.IsClipped = FALSE;
CurInfo->LastBtnDown = 0;
CurInfo->CurrentCursorObject = NULL;
- CurInfo->ShowingCursor = 0;
-
+ CurInfo->ShowingCursor = 0;
+
+ /* FIXME: Obtain the following information from the registry */
+
CurInfo->WheelScroLines = 3;
CurInfo->WheelScroChars = 3;
-
- /* FIXME: Obtain the following information from the registry */
CurInfo->SwapButtons = FALSE;
CurInfo->DblClickSpeed = 500;
CurInfo->DblClickWidth = 4;
@@ -536,7 +537,10 @@
CurInfo->MouseHoverWidth = 4;
CurInfo->MouseHoverHeight = 4;
+ WindowStationObject->ScreenSaverTimeOut = 10 * 60;
WindowStationObject->SystemCursor = CurInfo;
+
+ /* END FIXME loading from register */
if (!IntSetupClipboard(WindowStationObject))
{