Author: greatlrd
Date: Thu Jun 14 17:41:48 2007
New Revision: 27173
URL: http://svn.reactos.org/svn/reactos?rev=27173&view=rev
Log:
start rewrite SetCooperativeLevel
we pass some more test for setcooper but not all, the wine code are allot mess and wrong.
the wine code will be remove complete.
Modified:
trunk/reactos/dll/directx/ddraw/Ddraw/ddraw_setcooperativelevel.c
Modified: trunk/reactos/dll/directx/ddraw/Ddraw/ddraw_setcooperativelevel.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/directx/ddraw/Ddraw/dd…
==============================================================================
--- trunk/reactos/dll/directx/ddraw/Ddraw/ddraw_setcooperativelevel.c (original)
+++ trunk/reactos/dll/directx/ddraw/Ddraw/ddraw_setcooperativelevel.c Thu Jun 14 17:41:48 2007
@@ -17,11 +17,6 @@
Main_DirectDraw_SetCooperativeLevel (LPDIRECTDRAW7 iface, HWND hwnd, DWORD cooplevel)
{
- /*
- * Code from wine, this functions have been cut and paste from wine 0.9.35
- * and have been modify allot and are still in devloping so it match with
- * msdn document struct and flags
- */
HRESULT retVal = DD_OK;
HWND window;
@@ -31,15 +26,26 @@
_SEH_TRY
{
- /* Get the old window */
- window = (HWND) This->lpLcl->hWnd;
-#if 0 // this check is totally invalid if you ask me - mbosma
- if(!window)
+ // FIXME test if 0x20 exists as a flag and what thuse it do
+ if ( ( cooplevel & (~(DDSCL_FPUPRESERVE | DDSCL_FPUSETUP | DDSCL_MULTITHREADED | DDSCL_CREATEDEVICEWINDOW |
+ DDSCL_SETDEVICEWINDOW | DDSCL_SETFOCUSWINDOW | DDSCL_ALLOWMODEX | DDSCL_EXCLUSIVE |
+ DDSCL_NORMAL | DDSCL_NOWINDOWCHANGES | DDSCL_ALLOWREBOOT | DDSCL_FULLSCREEN))) ||
+ (!( cooplevel & (DDSCL_NORMAL | DDSCL_EXCLUSIVE | DDSCL_SETFOCUSWINDOW))) ||
+ ((cooplevel & DDSCL_FPUSETUP) && (cooplevel & DDSCL_FPUPRESERVE)))
{
- retVal = DDERR_NOHWND;
- _SEH_LEAVE;
+ return DDERR_INVALIDPARAMS;
}
-#endif
+
+
+
+
+
+
+ /*
+ * Code from wine, this functions have been cut and paste from wine 0.9.35
+ * and have been modify allot and are still in devloping so it match with
+ * msdn document struct and flags
+ */
if(hwnd && !IsWindow(hwnd))
{
@@ -47,34 +53,13 @@
_SEH_LEAVE;
}
- /* Tests suggest that we need one of them: */
- if(!(cooplevel & (DDSCL_SETFOCUSWINDOW |
- DDSCL_NORMAL |
- DDSCL_EXCLUSIVE )))
- {
- retVal = DDERR_INVALIDPARAMS;
- _SEH_LEAVE;
- }
/* Handle those levels first which set various hwnds */
if(cooplevel & DDSCL_SETFOCUSWINDOW)
{
- /* This isn't compatible with a lot of flags */
- if(cooplevel & ( DDSCL_MULTITHREADED |
- DDSCL_FPUSETUP |
- DDSCL_FPUPRESERVE |
- DDSCL_ALLOWREBOOT |
- DDSCL_ALLOWMODEX |
- DDSCL_SETDEVICEWINDOW |
- DDSCL_NORMAL |
- DDSCL_EXCLUSIVE |
- DDSCL_FULLSCREEN ) )
- {
- retVal = DDERR_INVALIDPARAMS;
- _SEH_LEAVE;
- }
+
- else if(This->lpLcl->dwLocalFlags & DDRAWILCL_SETCOOPCALLED)
+ if(This->lpLcl->dwLocalFlags & DDRAWILCL_SETCOOPCALLED)
{
retVal = DDERR_HWNDALREADYSET;
_SEH_LEAVE;
Author: dreimer
Date: Thu Jun 14 09:15:04 2007
New Revision: 27172
URL: http://svn.reactos.org/svn/reactos?rev=27172&view=rev
Log:
Once more, a bunch of typo and style fixes.
Modified:
trunk/tools/RosBE-Windows/Root/Help.cmd
trunk/tools/RosBE-Windows/Root/readme.pdf
Modified: trunk/tools/RosBE-Windows/Root/Help.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Help.cmd?…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Help.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Help.cmd Thu Jun 14 09:15:04 2007
@@ -17,7 +17,7 @@
echo make [OPTIONS] - make, without options does a standard build of
echo ReactOS. OPTIONS are the standard ReactOS build
echo options ie. "bootcd" and "strip" as second option
- echo sets strip = yes.
+ echo sets striping to enabled.
echo makex [OPTIONS] - Same as 'make' but automatically determines the
echo number of CPUs in the system and uses -j with the
echo appropriate number.
@@ -33,14 +33,14 @@
goto :EOF
)
if "%1" == "make" (
- echo Usage: make [OPTIONS]
+ echo Usage: make [OPTIONS1] [OPTIONS2]
echo make, without options does a standard build of ReactOS. OPTIONS are
echo the standard ReactOS build options ie. "bootcd", "livecd", etc. "strip"
- echo as second option sets strip = yes.
+ echo as second option sets stripping to enabled.
goto :EOF
)
if "%1" == "makex" (
- echo Usage: makex [OPTIONS]
+ echo Usage: makex [OPTIONS] [OPTIONS2]
echo Same as 'make' but automatically determines the number of CPUs in the
echo system and uses -j with the appropriate number.
echo NOTE: The number makex uses can be modified by editing Build-Multi.cmd
@@ -63,6 +63,7 @@
if "%1" == "svn" (
echo Usage: svn [OPTIONS]
echo Creates, Updates or cleans up your ReactOS Source tree.
+ echo.
echo update - Updates to HEAD Revision.
echo create - Creates a new ReactOS Tree.
echo cleanup - Cleans up and fixes errors in Tree.
@@ -71,6 +72,7 @@
if "%1" == "config" (
echo Usage: config [OPTIONS]
echo Creates a Configuration File, which tells RosBE how to build the Tree.
+ echo.
echo delete - Deletes the configuration File and so sets back to default
goto :EOF
)
Modified: trunk/tools/RosBE-Windows/Root/readme.pdf
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/readme.pd…
==============================================================================
Binary files - no diff available.
Author: dreimer
Date: Thu Jun 14 00:48:24 2007
New Revision: 27171
URL: http://svn.reactos.org/svn/reactos?rev=27171&view=rev
Log:
Some fixed typos.
Updated readme, telling the users how to generate a new repo with the new integrated SVN Client
Modified:
trunk/tools/RosBE-Windows/Root/Build-Shared.cmd
trunk/tools/RosBE-Windows/Root/ChangeLog.txt
trunk/tools/RosBE-Windows/Root/README.txt
trunk/tools/RosBE-Windows/Root/readme.pdf
Modified: trunk/tools/RosBE-Windows/Root/Build-Shared.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Build-Sha…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Build-Shared.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Build-Shared.cmd Thu Jun 14 00:48:24 2007
@@ -17,8 +17,11 @@
goto :Build
)
if "%1" == "" (
+ set ROS_LEAN_AND_MEAN = no
goto :Build
)
+
+:Build
::
:: Check if config.template.rbuild is newer than config.rbuild, if it is then
@@ -41,8 +44,6 @@
::
call "%ROSBEBASEDIR%\TimeDate.cmd"
-:Build
-
::
:: Now use mingw32-make to build ReactOS, passing along options, if any.
::
Modified: trunk/tools/RosBE-Windows/Root/ChangeLog.txt
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/ChangeLog…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/ChangeLog.txt (original)
+++ trunk/tools/RosBE-Windows/Root/ChangeLog.txt Thu Jun 14 00:48:24 2007
@@ -1,14 +1,14 @@
-*** Juni 21th, 2007 - RosBE 0.3.7 Released
+*** June 21th, 2007 - RosBE 0.3.7 Released
- Updated: GCC 4.1.3 Build 200706XX
- (Here is the reason why the installer got smaller between .3.6 and .3.7, my bins are stripped, w3seeks were not)
+ (Here is the reason why the installer got smaller between 0.3.6 and 0.3.7, my bins are stripped now)
- Updated: binutils 2.17.50 Build 200706XX
-- Added a SVN Client
-- Added a Build Configurator.
-- Added grep/cut/sed Tools for the new Configurator
-- Added SVN 1.4.4 for the SVN Feature
-- Added use of ROS_LEAN_AND_MEAN by setting make %1 strip
-- Readded makex. Sorry, bug in Vista still persists... its a GCC bug
+- Added a SVN Client.
+- Added a config.rbuild Configurator.
+- Added grep/cut/sed Tools for the new Configurator.
+- Added SVN 1.4.4 for the SVN Feature.
+- Added use of ROS_LEAN_AND_MEAN by typeing "make/makex %command% strip".
+- Readded makex. Sorry, bug in Vista still persists... its a GCC bug.
*** May 21th, 2007 - RosBE 0.3.6 Released
@@ -21,9 +21,9 @@
- New cool Icon. Thanks to ROSFan for it.
- Readded buildtime.
- Removed makex for now, until the bug is fixed.
-- Added Colin Finck's Build.cmd Unification
-- Added Ged Murphy's flash tool to letthe window flash at build's end
-- Updated all other tools
+- Added Colin Finck's Build.cmd Unification.
+- Added Ged Murphy's flash tool to let the window flash once at build's end.
+- Updated all other tools.
*** Janruary 26th, 2007 - RosBE 0.3.5b2 Released
Modified: trunk/tools/RosBE-Windows/Root/README.txt
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/README.tx…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/README.txt (original)
+++ trunk/tools/RosBE-Windows/Root/README.txt Thu Jun 14 00:48:24 2007
@@ -3,10 +3,7 @@
The ReactOS Build Environment v0.3.7 contains a complete build environment for ReactOS based on GCC 4.1.3/MinGW.
-While installing the ReactOS Build Environment you are asked to provide the directory where your ReactOS sources
-are located (ie.reactos\), you must enter the complete path to them (ie. C:\projects\reactos). The path is now
-required for the ReactOS Build Environment to work correctly so if you change where your sources are located you
-must also change the entry in the shortcuts in the start menu (the 'Start in:' entry).
+While installing the ReactOS Build Environment you are asked to provide the directory where your ReactOS sources are located or should be checked out to (ie.reactos\), you must enter the complete path to this folder (ie. C:\projects\reactos). The path is now required for the ReactOS Build Environment to work correctly, so if you change where your sources are located you must also change the entry in the shortcuts in the start menu (the 'Start in:' entry). If you did not checkout a Source tree yet, start RosBE and type svn create. This will take a while.
To build ReactOS with the ReactOS Build Environment you run "GCC 4.1.3 ReactOS Build Environment" from the start
menu. Now you have a choice of using either the built in commands (which are displayed onscreen with information
@@ -14,12 +11,12 @@
The ReactOS Build Environment v0.3.7 contains the following packages:
-binutils-2.17.50-20070122-1.tar.gz
-mingw-runtime-3.12.tar.gz
-w32api-3.9.tar.gz
-mingw32-make-3.81-2.tar.gz
-nasm-0.98.39-win32.zip
-mingw-4.1.3-20070405-prerelease.zip
+binutils-2.17.50-200706XX
+mingw-runtime-3.12
+w32api-3.9
+mingw32-make-3.81-2
+nasm-0.98.39-win32
+mingw-4.1.3-200706XX-prerelease
- Patched to fix a GCC bug concerning
decorating virtual methods with stdcall
in C++, see GCC issue:
@@ -50,4 +47,4 @@
Inspired by blight's ReactOS Build Environment v0.2-3.4.5
Inspired by Dazzle from TinyKRNL (http://www.tinykrnl.org/)
-Icon made by ROSFan
+Icon made by ROSFan
Modified: trunk/tools/RosBE-Windows/Root/readme.pdf
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/readme.pd…
==============================================================================
Binary files - no diff available.
Author: dreimer
Date: Wed Jun 13 16:56:18 2007
New Revision: 27170
URL: http://svn.reactos.org/svn/reactos?rev=27170&view=rev
Log:
- Added usage of ROS_LEAN_AND_MEAN by using strip as %2 of make.
- Updated Changelog once more. Binutils will be updated too.
Modified:
trunk/tools/RosBE-Windows/Root/Build-Multi.cmd
trunk/tools/RosBE-Windows/Root/Build-Shared.cmd
trunk/tools/RosBE-Windows/Root/Build.cmd
trunk/tools/RosBE-Windows/Root/ChangeLog.txt
trunk/tools/RosBE-Windows/Root/Help.cmd
Modified: trunk/tools/RosBE-Windows/Root/Build-Multi.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Build-Mul…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Build-Multi.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Build-Multi.cmd Wed Jun 13 16:56:18 2007
@@ -30,9 +30,9 @@
::
:: Set the build command
::
-set MAKE_COMMAND="%_MINGWMAKE%" -j %CPUCOUNT% %*
+set MAKE_COMMAND="%_MINGWMAKE%" -j %CPUCOUNT% %1
::
:: Execute the shared build commands
::
-call "%ROSBEBASEDIR%\Build-Shared.cmd"
+call "%ROSBEBASEDIR%\Build-Shared.cmd" %2
Modified: trunk/tools/RosBE-Windows/Root/Build-Shared.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Build-Sha…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Build-Shared.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Build-Shared.cmd Wed Jun 13 16:56:18 2007
@@ -11,6 +11,14 @@
@echo off
title Building...
+
+if "%1" == "strip" (
+ set ROS_LEAN_AND_MEAN = yes
+ goto :Build
+)
+if "%1" == "" (
+ goto :Build
+)
::
:: Check if config.template.rbuild is newer than config.rbuild, if it is then
@@ -33,13 +41,14 @@
::
call "%ROSBEBASEDIR%\TimeDate.cmd"
+:Build
+
::
:: Now use mingw32-make to build ReactOS, passing along options, if any.
::
-
call "%ROSBEBASEDIR%\Tools\buildtime.exe" %MAKE_COMMAND% 2>&1 | "%ROSBEBASEDIR%\Tools\tee.exe" "%_ROSBELOGDIR%\BuildLog-%_MINGWVERSION%-%DATENAME%-%TIMENAME%.txt"
::
:: highlight the fact that building has ended
::
-call "%ROSBEBASEDIR%\Tools\flash.exe"
+::call "%ROSBEBASEDIR%\Tools\flash.exe"
Modified: trunk/tools/RosBE-Windows/Root/Build.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Build.cmd…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Build.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Build.cmd Wed Jun 13 16:56:18 2007
@@ -15,9 +15,9 @@
::
:: Set the build command
::
-set MAKE_COMMAND="%_MINGWMAKE%" %*
+set MAKE_COMMAND="%_MINGWMAKE%" %1
::
:: Execute the shared build commands
::
-call "%ROSBEBASEDIR%\Build-Shared.cmd"
+call "%ROSBEBASEDIR%\Build-Shared.cmd" %2
Modified: trunk/tools/RosBE-Windows/Root/ChangeLog.txt
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/ChangeLog…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/ChangeLog.txt (original)
+++ trunk/tools/RosBE-Windows/Root/ChangeLog.txt Wed Jun 13 16:56:18 2007
@@ -2,10 +2,12 @@
- Updated: GCC 4.1.3 Build 200706XX
(Here is the reason why the installer got smaller between .3.6 and .3.7, my bins are stripped, w3seeks were not)
+- Updated: binutils 2.17.50 Build 200706XX
- Added a SVN Client
- Added a Build Configurator.
- Added grep/cut/sed Tools for the new Configurator
- Added SVN 1.4.4 for the SVN Feature
+- Added use of ROS_LEAN_AND_MEAN by setting make %1 strip
- Readded makex. Sorry, bug in Vista still persists... its a GCC bug
*** May 21th, 2007 - RosBE 0.3.6 Released
Modified: trunk/tools/RosBE-Windows/Root/Help.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Help.cmd?…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Help.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Help.cmd Wed Jun 13 16:56:18 2007
@@ -16,7 +16,8 @@
echo Available Commands:
echo make [OPTIONS] - make, without options does a standard build of
echo ReactOS. OPTIONS are the standard ReactOS build
- echo options ie. bootcd.
+ echo options ie. "bootcd" and "strip" as second option
+ echo sets strip = yes.
echo makex [OPTIONS] - Same as 'make' but automatically determines the
echo number of CPUs in the system and uses -j with the
echo appropriate number.
@@ -34,7 +35,8 @@
if "%1" == "make" (
echo Usage: make [OPTIONS]
echo make, without options does a standard build of ReactOS. OPTIONS are
- echo the standard ReactOS build options ie. bootcd, livecd, etc.
+ echo the standard ReactOS build options ie. "bootcd", "livecd", etc. "strip"
+ echo as second option sets strip = yes.
goto :EOF
)
if "%1" == "makex" (
Author: dreimer
Date: Wed Jun 13 01:58:40 2007
New Revision: 27168
URL: http://svn.reactos.org/svn/reactos?rev=27168&view=rev
Log:
New/Added Headers in GedMurphy Style. Small but informative. I added the owners of the sources of the tools as far as I know them.
buildtime: KJK::Hyperion
flash: Ged Murphy
getdate: Peter "dralnix" Ward
cpucount: Christoph_vW
Modified:
trunk/tools/RosBE-Windows/Root/Build-Multi.cmd
trunk/tools/RosBE-Windows/Root/Build-Shared.cmd
trunk/tools/RosBE-Windows/Root/Build.cmd
trunk/tools/RosBE-Windows/Root/Clean.cmd
trunk/tools/RosBE-Windows/Root/Config.cmd
trunk/tools/RosBE-Windows/Root/Help.cmd
trunk/tools/RosBE-Windows/Root/RosBE.cmd
trunk/tools/RosBE-Windows/Root/SVN.cmd
trunk/tools/RosBE-Windows/Root/TimeDate.cmd
trunk/tools/RosBE-Windows/Tools/buildtime.c
trunk/tools/RosBE-Windows/Tools/cpucount.c
trunk/tools/RosBE-Windows/Tools/flash.c
trunk/tools/RosBE-Windows/Tools/getdate.c
Modified: trunk/tools/RosBE-Windows/Root/Build-Multi.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Build-Mul…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Build-Multi.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Build-Multi.cmd Wed Jun 13 01:58:40 2007
@@ -1,7 +1,13 @@
-:: Copyright (c) Peter Ward, Colin Finck and Daniel Reimer. All rights reserved.
::
-:: Perform the build of ReactOS, but use the -j option with the appropriate
-:: number for the number of CPUs in the system.
+:: PROJECT: RosBE - ReactOS Build Environment for Windows
+:: LICENSE: GPL - See COPYING in the top level directory
+:: FILE: Root/Build-Multi.cmd
+:: PURPOSE: Perform the build of ReactOS, but use the -j option with the appropriate
+:: number for the number of CPUs in the system.
+:: COPYRIGHT: Copyright 2007 Daniel Reimer <reimer.daniel(a)freenet.de>
+:: Colin Finck <mail(a)colinfinck.de>
+:: Peter Ward <dralnix(a)gmail.com>
+::
::
@echo off
Modified: trunk/tools/RosBE-Windows/Root/Build-Shared.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Build-Sha…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Build-Shared.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Build-Shared.cmd Wed Jun 13 01:58:40 2007
@@ -1,6 +1,12 @@
-:: Copyright (c) Peter Ward, Colin Finck and Daniel Reimer. All rights reserved.
::
-:: Shared actions for "Build.cmd" and "Build-Multi.cmd"
+:: PROJECT: RosBE - ReactOS Build Environment for Windows
+:: LICENSE: GPL - See COPYING in the top level directory
+:: FILE: Root/Build-Shared.cmd
+:: PURPOSE: Shared actions for "Build.cmd" and "Build-Multi.cmd"
+:: COPYRIGHT: Copyright 2007 Daniel Reimer <reimer.daniel(a)freenet.de>
+:: Colin Finck <mail(a)colinfinck.de>
+:: Peter Ward <dralnix(a)gmail.com>
+::
::
@echo off
Modified: trunk/tools/RosBE-Windows/Root/Build.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Build.cmd…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Build.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Build.cmd Wed Jun 13 01:58:40 2007
@@ -1,6 +1,12 @@
-:: Copyright (c) Peter Ward, Colin Finck and Daniel Reimer. All rights reserved.
::
-:: Perform the build of ReactOS.
+:: PROJECT: RosBE - ReactOS Build Environment for Windows
+:: LICENSE: GPL - See COPYING in the top level directory
+:: FILE: Root/Build.cmd
+:: PURPOSE: Perform the build of ReactOS.
+:: COPYRIGHT: Copyright 2007 Daniel Reimer <reimer.daniel(a)freenet.de>
+:: Colin Finck <mail(a)colinfinck.de>
+:: Peter Ward <dralnix(a)gmail.com>
+::
::
@echo off
Modified: trunk/tools/RosBE-Windows/Root/Clean.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Clean.cmd…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Clean.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Clean.cmd Wed Jun 13 01:58:40 2007
@@ -1,6 +1,11 @@
-:: Copyright (c) Peter Ward and Daniel Reimer. All rights reserved.
::
-:: Clean the ReactOS source directory.
+:: PROJECT: RosBE - ReactOS Build Environment for Windows
+:: LICENSE: GPL - See COPYING in the top level directory
+:: FILE: Root/Clean.cmd
+:: PURPOSE: Clean the ReactOS source directory.
+:: COPYRIGHT: Copyright 2007 Daniel Reimer <reimer.daniel(a)freenet.de>
+:: Peter Ward <dralnix(a)gmail.com>
+::
::
@echo off
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 Wed Jun 13 01:58:40 2007
@@ -1,6 +1,10 @@
-:: Copyright (c) Daniel Reimer. All rights reserved.
::
-:: A Basic Config.rbuild Creator for ReactOS.
+:: PROJECT: RosBE - ReactOS Build Environment for Windows
+:: LICENSE: GPL - See COPYING in the top level directory
+:: FILE: Root/Config.cmd
+:: PURPOSE: A Basic Config.rbuild Creator for ReactOS.
+:: COPYRIGHT: Copyright 2007 Daniel Reimer <reimer.daniel(a)freenet.de>
+::
::
@echo off
Modified: trunk/tools/RosBE-Windows/Root/Help.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Help.cmd?…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Help.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Help.cmd Wed Jun 13 01:58:40 2007
@@ -1,6 +1,11 @@
-:: Copyright (c) Peter Ward and Daniel Reimer. All rights reserved.
::
-:: Display help for the commands included with the ReactOS Build Environment.
+:: PROJECT: RosBE - ReactOS Build Environment for Windows
+:: LICENSE: GPL - See COPYING in the top level directory
+:: FILE: Root/Help.cmd
+:: PURPOSE: Display help for the commands included with the ReactOS Build Environment.
+:: COPYRIGHT: Copyright 2007 Daniel Reimer <reimer.daniel(a)freenet.de>
+:: Peter Ward <dralnix(a)gmail.com>
+::
::
@echo off
Modified: trunk/tools/RosBE-Windows/Root/RosBE.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/RosBE.cmd…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/RosBE.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/RosBE.cmd Wed Jun 13 01:58:40 2007
@@ -1,7 +1,12 @@
-:: Copyright (c) Peter Ward and Daniel Reimer. All rights reserved.
::
-:: This script provides/sets up various build environments for
-:: ReactOS. Currently it provides GCC 4.1.3 build environments.
+:: PROJECT: RosBE - ReactOS Build Environment for Windows
+:: LICENSE: GPL - See COPYING in the top level directory
+:: FILE: Root/RosBE.cmd
+:: PURPOSE: This script provides/sets up various build environments for
+:: ReactOS. Currently it provides GCC 4.1.3 build environments.
+:: COPYRIGHT: Copyright 2007 Daniel Reimer <reimer.daniel(a)freenet.de>
+:: Peter Ward <dralnix(a)gmail.com>
+::
::
@echo off
Modified: trunk/tools/RosBE-Windows/Root/SVN.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/SVN.cmd?r…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/SVN.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/SVN.cmd Wed Jun 13 01:58:40 2007
@@ -1,6 +1,10 @@
-:: Copyright (c) Daniel Reimer. All rights reserved.
::
-:: Integrated SVN Client
+:: PROJECT: RosBE - ReactOS Build Environment for Windows
+:: LICENSE: GPL - See COPYING in the top level directory
+:: FILE: Root/SVN.cmd
+:: PURPOSE: Integrated SVN Client
+:: COPYRIGHT: Copyright 2007 Daniel Reimer <reimer.daniel(a)freenet.de>
+::
::
@echo off
Modified: trunk/tools/RosBE-Windows/Root/TimeDate.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/TimeDate.…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/TimeDate.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/TimeDate.cmd Wed Jun 13 01:58:40 2007
@@ -1,6 +1,11 @@
-:: Copyright (c) Peter Ward and Daniel Reimer. All rights reserved.
::
-:: Get the current date and time for use in our build log's file name.
+:: PROJECT: RosBE - ReactOS Build Environment for Windows
+:: LICENSE: GPL - See COPYING in the top level directory
+:: FILE: Root/TimeDate.cmd
+:: PURPOSE: Get the current date and time for use in our build log's file name.
+:: COPYRIGHT: Copyright 2007 Daniel Reimer <reimer.daniel(a)freenet.de>
+:: Peter Ward <dralnix(a)gmail.com>
+::
::
@echo off
Modified: trunk/tools/RosBE-Windows/Tools/buildtime.c
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Tools/buildtim…
==============================================================================
--- trunk/tools/RosBE-Windows/Tools/buildtime.c (original)
+++ trunk/tools/RosBE-Windows/Tools/buildtime.c Wed Jun 13 01:58:40 2007
@@ -1,4 +1,13 @@
-#include <windows.h>
+/*
+ * PROJECT: RosBE - ReactOS Build Environment for Windows
+ * LICENSE: GPL - See COPYING in the top level directory
+ * FILE: Tools/buildtime.c
+ * PURPOSE: Buildtime Counter
+ * COPYRIGHT: Copyright 2007 KJK::Hyperion
+ *
+ */
+
+
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
Modified: trunk/tools/RosBE-Windows/Tools/cpucount.c
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Tools/cpucount…
==============================================================================
--- trunk/tools/RosBE-Windows/Tools/cpucount.c (original)
+++ trunk/tools/RosBE-Windows/Tools/cpucount.c Wed Jun 13 01:58:40 2007
@@ -1,3 +1,13 @@
+/*
+ * PROJECT: RosBE - ReactOS Build Environment for Windows
+ * LICENSE: GPL - See COPYING in the top level directory
+ * FILE: Tools/cpucount.c
+ * PURPOSE: CPU Core Counter
+ * COPYRIGHT: Copyright 2007 Christoph von Wittich <Christoph_vW(a)reactos.org>
+ *
+ */
+
+
#include <windows.h>
#include <stdio.h>
Modified: trunk/tools/RosBE-Windows/Tools/flash.c
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Tools/flash.c?…
==============================================================================
--- trunk/tools/RosBE-Windows/Tools/flash.c (original)
+++ trunk/tools/RosBE-Windows/Tools/flash.c Wed Jun 13 01:58:40 2007
@@ -1,3 +1,13 @@
+/*
+ * PROJECT: RosBE - ReactOS Build Environment for Windows
+ * LICENSE: GPL - See COPYING in the top level directory
+ * FILE: Tools/flash.c
+ * PURPOSE: Taskbar Flasher
+ * COPYRIGHT: Copyright 2007 Ged Murphy <gedmurphy(a)reactos.org>
+ *
+ */
+
+
#include <windows.h>
HWND GetConsoleHwnd(void)
Modified: trunk/tools/RosBE-Windows/Tools/getdate.c
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Tools/getdate.…
==============================================================================
--- trunk/tools/RosBE-Windows/Tools/getdate.c (original)
+++ trunk/tools/RosBE-Windows/Tools/getdate.c Wed Jun 13 01:58:40 2007
@@ -1,3 +1,13 @@
+/*
+ * PROJECT: RosBE - ReactOS Build Environment for Windows
+ * LICENSE: GPL - See COPYING in the top level directory
+ * FILE: Tools/getdate.c
+ * PURPOSE: Returns System Date
+ * COPYRIGHT: Copyright 2007 Peter Ward <dralnix(a)gmail.com>
+ *
+ */
+
+
#include <windows.h>
#include <stdio.h>