Author: cfinck
Date: Mon Aug 6 23:07:34 2007
New Revision: 28200
URL: http://svn.reactos.org/svn/reactos?rev=28200&view=rev
Log:
Expand environment strings in the szWallpaper variable. (patch by Marc Piulachs, marc DOT piulachs AT codexchange DOT net)
This is the same way how Windows XP does it (allowing environment variables in the "Wallpaper" registry value, but not as an argument for SystemParametersInfo, SPI_SETDESKWALLPAPER)
See issue #2536 for more details.
Modified:
trunk/reactos/base/system/userinit/userinit.c
Modified: trunk/reactos/base/system/userinit/userinit.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/userinit/useri…
==============================================================================
--- trunk/reactos/base/system/userinit/userinit.c (original)
+++ trunk/reactos/base/system/userinit/userinit.c Mon Aug 6 23:07:34 2007
@@ -434,6 +434,8 @@
&Size) == ERROR_SUCCESS
&& Type == REG_SZ)
{
+ ExpandEnvironmentStrings(szWallpaper, szWallpaper, MAX_PATH);
+
/* Load and change the wallpaper */
SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, szWallpaper, SPIF_SENDCHANGE);
}
Author: greatlrd
Date: Mon Aug 6 17:20:31 2007
New Revision: 28193
URL: http://svn.reactos.org/svn/reactos?rev=28193&view=rev
Log:
fix a smaller issue with win32ksys, when u did delete win32k.s or type make win32ksys_clean
this file was not being rebuild or remove.
Modified:
trunk/reactos/tools/nci/nci.mak
Modified: trunk/reactos/tools/nci/nci.mak
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/nci/nci.mak?rev=2819…
==============================================================================
--- trunk/reactos/tools/nci/nci.mak (original)
+++ trunk/reactos/tools/nci/nci.mak Mon Aug 6 17:20:31 2007
@@ -59,8 +59,7 @@
$(WIN32K_SERVICE_TABLE) \
$(NTDLL_STUBS) \
$(KERNEL_STUBS) \
- $(WIN32K_GDI_STUBS) \
- $(WIN32K_USER_STUBS)
+ $(WIN32K_STUBS)
$(NCI_SERVICE_FILES): $(NCI_TARGET) $(KERNEL_SVC_DB) $(WIN32K_SVC_DB)
$(ECHO_NCI)