Author: dreimer
Date: Sun Sep 9 01:24:31 2007
New Revision: 28958
URL: http://svn.reactos.org/svn/reactos?rev=28958&view=rev
Log:
Removed NTLPC Setting from Config.cmd. Its not useful anymore.
Modified:
trunk/tools/RosBE-Windows/Root/Config.cmd
Modified: trunk/tools/RosBE-Windows/Root/Config.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Config.cm…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Config.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Config.cmd Sun Sep 9 01:24:31 2007
@@ -187,15 +187,6 @@
sed "s/\"NSWPAT\" value=\"[0-1]\"/\"NSWPAT\" value=\"%D%\"/g" "%ROSBEBASEDIR%\config7.rbuild" > "%ROSBEBASEDIR%\config8.rbuild"
cls
-echo Whether to compile with NT-compatible LPC Semantics. This should
-echo always be 1.
-echo.
-echo Right now
-grep \"NTLPC\" "%ROSBEBASEDIR%\config.rbuild"|cut -d "\"" -f 4
-SET /P E="(0), (1)"
-sed "s/\"NTLPC\" value=\"[0-1]\"/\"NTLPC\" value=\"%E%\"/g" "%ROSBEBASEDIR%\config8.rbuild" > "%ROSBEBASEDIR%\config9.rbuild"
-cls
-
echo Whether to compile with the KD protocol. This will disable support for
echo KDBG as well as rossym and symbol lookups, and allow WinDBG to connect
echo to ReactOS. This is currently not fully working, and requires kdcom
Author: cfinck
Date: Sat Sep 8 22:43:36 2007
New Revision: 28953
URL: http://svn.reactos.org/svn/reactos?rev=28953&view=rev
Log:
Enable the Windows Server 2003 behaviour for SetTimer.
Finally, Matrix Screensaver does not work anymore under ReactOS, so we are compatible with Windows XP SP2 and Windows Server 2003 in this case :-D
Modified:
trunk/reactos/subsystems/win32/win32k/ntuser/timer.c
Modified: trunk/reactos/subsystems/win32/win32k/ntuser/timer.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/nt…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntuser/timer.c (original)
+++ trunk/reactos/subsystems/win32/win32k/ntuser/timer.c Sat Sep 8 22:43:36 2007
@@ -104,9 +104,9 @@
MessageQueue = Window->MessageQueue;
}
-#if 1
-
- /* Win NT/2k/XP */
+#if 0
+
+ /* Windows NT/2k/XP behaviour */
if (Elapse > 0x7fffffff)
{
DPRINT("Adjusting uElapse\n");
@@ -115,7 +115,7 @@
#else
- /* Win Server 2003 */
+ /* Windows XP SP2 and Windows Server 2003 behaviour */
if (Elapse > 0x7fffffff)
{
DPRINT("Adjusting uElapse\n");
@@ -124,7 +124,7 @@
#endif
- /* Win 2k/XP */
+ /* Windows 2k/XP and Windows Server 2003 SP1 behaviour */
if (Elapse < 10)
{
DPRINT("Adjusting uElapse\n");