Author: greatlrd
Date: Sat Aug 5 12:10:44 2006
New Revision: 23453
URL: http://svn.reactos.org/svn/reactos?rev=23453&view=rev
Log:
Created folder remotely
we store all langues rc file to folder lang
Added:
trunk/reactos/base/applications/cacls/lang/
Author: jimtabor
Date: Sat Aug 5 05:48:20 2006
New Revision: 23452
URL: http://svn.reactos.org/svn/reactos?rev=23452&view=rev
Log:
Patch by Dan Hipschman, Call SetLastError in CreateWindowEx when WS_CHILD is set with no parent.
Modified:
trunk/reactos/subsystems/win32/win32k/ntuser/window.c
Modified: trunk/reactos/subsystems/win32/win32k/ntuser/window.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/nt…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntuser/window.c (original)
+++ trunk/reactos/subsystems/win32/win32k/ntuser/window.c Sat Aug 5 05:48:20 2006
@@ -1450,6 +1450,7 @@
}
else if ((dwStyle & (WS_CHILD | WS_POPUP)) == WS_CHILD)
{
+ SetLastWin32Error(ERROR_TLW_WITH_WSCHILD);
RETURN( (HWND)0); /* WS_CHILD needs a parent, but WS_POPUP doesn't */
}
Author: turner
Date: Sat Aug 5 01:24:57 2006
New Revision: 23448
URL: http://svn.reactos.org/svn/reactos?rev=23448&view=rev
Log:
update the help for exit to include /b
Modified:
trunk/reactos/base/shell/cmd/En.rc
Modified: trunk/reactos/base/shell/cmd/En.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/En.rc?rev=2…
==============================================================================
--- trunk/reactos/base/shell/cmd/En.rc (original)
+++ trunk/reactos/base/shell/cmd/En.rc Sat Aug 5 01:24:57 2006
@@ -239,7 +239,10 @@
STRING_ECHO_HELP5, "ECHO is %s\n"
-STRING_EXIT_HELP, "Exits the command line interpreter.\n\nEXIT\n"
+STRING_EXIT_HELP, "Exits the command line interpreter.\n\nEXIT [/b] [ExitCode]\n\n\
+ /B Exits a batch file only. \n\
+ If run outside of a batch file it will exit cmd.exe\n\
+ ExitCode This value will be assigned to ERRORLEVEL on exit\n"
STRING_FOR_HELP1, "Runs a specified command for each file in a set of files\n\n\
FOR %variable IN (set) DO command [parameters]\n\n\
Author: fireball
Date: Fri Aug 4 23:28:54 2006
New Revision: 23446
URL: http://svn.reactos.org/svn/reactos?rev=23446&view=rev
Log:
Add an entry to enable unattended 1st stage setup (commented out by default).
In order to get unattended setup working:
1. Copy unattend.inf.sample to unattend.inf, adjust as needed
2. Uncomment the line in bootdata.rbuild to include it into bootcd
Modified:
trunk/reactos/boot/bootdata/bootdata.rbuild
Modified: trunk/reactos/boot/bootdata/bootdata.rbuild
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/bootdata/bootdata.rbu…
==============================================================================
--- trunk/reactos/boot/bootdata/bootdata.rbuild (original)
+++ trunk/reactos/boot/bootdata/bootdata.rbuild Fri Aug 4 23:28:54 2006
@@ -7,6 +7,7 @@
<cdfile base="reactos">hivesft.inf</cdfile>
<cdfile base="reactos">hivesys.inf</cdfile>
<cdfile base="reactos">txtsetup.sif</cdfile>
+<!--<cdfile base="reactos">unattend.inf</cdfile>-->
<directory name="bootcd">
<xi:include href="bootcd/bootcd.rbuild" />
</directory>