Author: ion
Date: Mon Jun 12 02:32:12 2006
New Revision: 22318
URL: http://svn.reactos.ru/svn/reactos?rev=22318&view=rev
Log:
- Fix a typo that had broken the build -- sorry.
Modified:
trunk/reactos/ntoskrnl/include/internal/io.h
trunk/reactos/ntoskrnl/io/file.c
Modified: trunk/reactos/ntoskrnl/include/internal/io.h
URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/ntoskrnl/include/internal/i…
==============================================================================
--- trunk/reactos/ntoskrnl/include/internal/io.h (original)
+++ trunk/reactos/ntoskrnl/include/internal/io.h Mon Jun 12 02:32:12 2006
@@ -489,7 +489,7 @@
NTAPI
IopParseDevice(
IN PVOID ParseObject,
- IN POBJECT_TYPE ObjectType,
+ IN PVOID ObjectType,
IN OUT PACCESS_STATE AccessState,
IN KPROCESSOR_MODE AccessMode,
IN ULONG Attributes,
@@ -504,7 +504,7 @@
NTAPI
IopParseFile(
IN PVOID ParseObject,
- IN POBJECT_TYPE ObjectType,
+ IN PVOID ObjectType,
IN OUT PACCESS_STATE AccessState,
IN KPROCESSOR_MODE AccessMode,
IN ULONG Attributes,
Modified: trunk/reactos/ntoskrnl/io/file.c
URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/ntoskrnl/io/file.c?rev=2231…
==============================================================================
--- trunk/reactos/ntoskrnl/io/file.c (original)
+++ trunk/reactos/ntoskrnl/io/file.c Mon Jun 12 02:32:12 2006
@@ -29,7 +29,7 @@
NTSTATUS
NTAPI
IopParseDevice(IN PVOID ParseObject,
- IN POBJECT_TYPE ObjectType,
+ IN PVOID ObjectType,
IN OUT PACCESS_STATE AccessState,
IN KPROCESSOR_MODE AccessMode,
IN ULONG Attributes,
@@ -117,7 +117,7 @@
NTSTATUS
NTAPI
IopParseFile(IN PVOID ParseObject,
- IN POBJECT_TYPE ObjectType,
+ IN PVOID ObjectType,
IN OUT PACCESS_STATE AccessState,
IN KPROCESSOR_MODE AccessMode,
IN ULONG Attributes,
Author: fireball
Date: Mon Jun 12 01:05:25 2006
New Revision: 22315
URL: http://svn.reactos.ru/svn/reactos?rev=22315&view=rev
Log:
Slightly update the doc to make it correspond to nowadays reality
Modified:
trunk/reactos/media/doc/HACKING
Modified: trunk/reactos/media/doc/HACKING
URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/media/doc/HACKING?rev=22315…
==============================================================================
--- trunk/reactos/media/doc/HACKING (original)
+++ trunk/reactos/media/doc/HACKING Mon Jun 12 01:05:25 2006
@@ -26,19 +26,14 @@
* Style
-There is no coding style used for ReactOS, however the following guidelines
-make things easier
+There is a coding style used for ReactOS, it's described in a ReactOS's Wiki
+page called Coding Style: http://www.reactos.org/wiki/index.php/Coding_Style
- Include information at the top of a module about its purpose, contact
- information for its programmer and any useful notes.
-
- Include a comment by each non-trival function describing its arguments,
- purpose and any other notes.
-
- Update the documentation in this directory
-
-These guidelines are an ideal, no one manages to implement them all the
-time, straightforward working code is probably just as good.
+However, not all codebase complies with the rules outlined in that page, so
+if you need to hack some code which has not been yet formatted, it's wise
+to keep the kind of formatting it already has, to make it looking good until
+it receives a formatting patch.
+
* Debugging
@@ -105,11 +100,11 @@
There is a mailing list for kernel development,
- ros-kernel(a)reactos.com
+ ros-dev(a)reactos.org
- The main developers use a cvs account to coordinate changes, ask
- rex (rex(a)lvcablemodem.com) for an account if you are going to be adding
- a lot of code. Smaller patches can go to the mailing list or to the
+ The main developers use a svn account to coordinate changes, ask
+ Aleksey (aleksey(a)reactos.org) for an account if you are going to be
+ adding a lot of code. Smaller patches can go to the mailing list or to the
relevant developer (usually the comment at the top of a module will have
an email address). Regular snapshots are made available for download,
see the mailing list for announcements.
Author: mbosma
Date: Sun Jun 11 19:16:48 2006
New Revision: 22313
URL: http://svn.reactos.ru/svn/reactos?rev=22313&view=rev
Log:
Fix size of the startmenu (e.g. Start->Programs) when there are very much entries. Tested under Windows. Fix by slawek from the German forum.
Modified:
trunk/reactos/base/shell/explorer/taskbar/startmenu.cpp
Modified: trunk/reactos/base/shell/explorer/taskbar/startmenu.cpp
URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/base/shell/explorer/taskbar…
==============================================================================
--- trunk/reactos/base/shell/explorer/taskbar/startmenu.cpp (original)
+++ trunk/reactos/base/shell/explorer/taskbar/startmenu.cpp Sun Jun 11 19:16:48 2006
@@ -1482,7 +1482,7 @@
if (rect.bottom > cyscreen) {
_arrow_btns = true;
- _invisible_lines = (rect.bottom-cyscreen+(STARTMENU_LINE_HEIGHT(icon_size)-1))/STARTMENU_SEP_HEIGHT(icon_size) + 1;
+ _invisible_lines = (rect.bottom-cyscreen+(STARTMENU_LINE_HEIGHT(icon_size)+1))/STARTMENU_LINE_HEIGHT(icon_size)+1;
rect.bottom -= _invisible_lines * STARTMENU_LINE_HEIGHT(icon_size);
bottom_max = rect.bottom;