mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
move some value to right place into the text FIXME load from register
svn path=/trunk/; revision=27457
This commit is contained in:
parent
016296a635
commit
3c5e9fd0c0
1 changed files with 9 additions and 5 deletions
|
@ -498,8 +498,9 @@ NtUserCreateWindowStation(
|
|||
/*
|
||||
* 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 @@ NtUserCreateWindowStation(
|
|||
CurInfo->CursorClipInfo.IsClipped = FALSE;
|
||||
CurInfo->LastBtnDown = 0;
|
||||
CurInfo->CurrentCursorObject = NULL;
|
||||
CurInfo->ShowingCursor = 0;
|
||||
|
||||
CurInfo->WheelScroLines = 3;
|
||||
CurInfo->WheelScroChars = 3;
|
||||
CurInfo->ShowingCursor = 0;
|
||||
|
||||
/* FIXME: Obtain the following information from the registry */
|
||||
|
||||
CurInfo->WheelScroLines = 3;
|
||||
CurInfo->WheelScroChars = 3;
|
||||
CurInfo->SwapButtons = FALSE;
|
||||
CurInfo->DblClickSpeed = 500;
|
||||
CurInfo->DblClickWidth = 4;
|
||||
|
@ -536,8 +537,11 @@ NtUserCreateWindowStation(
|
|||
CurInfo->MouseHoverWidth = 4;
|
||||
CurInfo->MouseHoverHeight = 4;
|
||||
|
||||
WindowStationObject->ScreenSaverTimeOut = 10 * 60;
|
||||
WindowStationObject->SystemCursor = CurInfo;
|
||||
|
||||
/* END FIXME loading from register */
|
||||
|
||||
if (!IntSetupClipboard(WindowStationObject))
|
||||
{
|
||||
DPRINT1("WindowStation: Error Setting up the clipboard!!!\n");
|
||||
|
|
Loading…
Reference in a new issue