Author: fireball Date: Mon Jan 15 22:41:14 2007 New Revision: 25468
URL: http://svn.reactos.org/svn/reactos?rev=25468&view=rev Log: - Merge two small fixes from 25400 - Merge 25401 and 25402
Added: branches/ros-branch-0_3_1/reactos/dll/cpl/access/Cz.rc - copied unchanged from r25402, trunk/reactos/dll/cpl/access/Cz.rc branches/ros-branch-0_3_1/reactos/dll/cpl/main/Cz.rc - copied unchanged from r25402, trunk/reactos/dll/cpl/main/Cz.rc branches/ros-branch-0_3_1/reactos/dll/cpl/mmsys/cs-CZ.rc - copied unchanged from r25402, trunk/reactos/dll/cpl/mmsys/cs-CZ.rc branches/ros-branch-0_3_1/reactos/dll/cpl/powercfg/cz.rc - copied unchanged from r25402, trunk/reactos/dll/cpl/powercfg/cz.rc Modified: branches/ros-branch-0_3_1/reactos/dll/cpl/access/access.rc branches/ros-branch-0_3_1/reactos/dll/cpl/desk/desk.rbuild branches/ros-branch-0_3_1/reactos/dll/cpl/main/rsrc.rc branches/ros-branch-0_3_1/reactos/dll/cpl/mmsys/mmsys.rc branches/ros-branch-0_3_1/reactos/dll/cpl/powercfg/powercfg.rc branches/ros-branch-0_3_1/reactos/ntoskrnl/lpc/port.c branches/ros-branch-0_3_1/reactos/ntoskrnl/mm/section.c
Modified: branches/ros-branch-0_3_1/reactos/dll/cpl/access/access.rc URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_1/reactos/dll/cpl... ============================================================================== --- branches/ros-branch-0_3_1/reactos/dll/cpl/access/access.rc (original) +++ branches/ros-branch-0_3_1/reactos/dll/cpl/access/access.rc Mon Jan 15 22:41:14 2007 @@ -16,3 +16,4 @@ #include "Ru.rc" #include "Fr.rc" #include "Es.rc" +#include "Cz.rc"
Modified: branches/ros-branch-0_3_1/reactos/dll/cpl/desk/desk.rbuild URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_1/reactos/dll/cpl... ============================================================================== --- branches/ros-branch-0_3_1/reactos/dll/cpl/desk/desk.rbuild (original) +++ branches/ros-branch-0_3_1/reactos/dll/cpl/desk/desk.rbuild Mon Jan 15 22:41:14 2007 @@ -26,7 +26,7 @@ <file>desk.c</file> <file>dibitmap.c</file> <file>misc.c</file> - <file>preview.c</file> + <file>preview.c</file> <file>screensaver.c</file> <file>settings.c</file> <file>desk.rc</file>
Modified: branches/ros-branch-0_3_1/reactos/dll/cpl/main/rsrc.rc URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_1/reactos/dll/cpl... ============================================================================== --- branches/ros-branch-0_3_1/reactos/dll/cpl/main/rsrc.rc (original) +++ branches/ros-branch-0_3_1/reactos/dll/cpl/main/rsrc.rc Mon Jan 15 22:41:14 2007 @@ -18,3 +18,4 @@ #include "Es.rc" #include "Ru.rc" #include "Uk.rc" +#include "Cz.rc"
Modified: branches/ros-branch-0_3_1/reactos/dll/cpl/mmsys/mmsys.rc URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_1/reactos/dll/cpl... ============================================================================== --- branches/ros-branch-0_3_1/reactos/dll/cpl/mmsys/mmsys.rc (original) +++ branches/ros-branch-0_3_1/reactos/dll/cpl/mmsys/mmsys.rc Mon Jan 15 22:41:14 2007 @@ -10,6 +10,7 @@
IDI_CPLICON ICON "resources/mmsys.ico"
+#include "cs-CZ.rc" #include "de-DE.rc" #include "el-GR.rc" #include "en-US.rc"
Modified: branches/ros-branch-0_3_1/reactos/dll/cpl/powercfg/powercfg.rc URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_1/reactos/dll/cpl... ============================================================================== --- branches/ros-branch-0_3_1/reactos/dll/cpl/powercfg/powercfg.rc (original) +++ branches/ros-branch-0_3_1/reactos/dll/cpl/powercfg/powercfg.rc Mon Jan 15 22:41:14 2007 @@ -18,3 +18,4 @@ #include "de.rc" #include "ru.rc" #include "fr.rc" +#include "cz.rc"
Modified: branches/ros-branch-0_3_1/reactos/ntoskrnl/lpc/port.c URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_1/reactos/ntoskrn... ============================================================================== --- branches/ros-branch-0_3_1/reactos/ntoskrnl/lpc/port.c (original) +++ branches/ros-branch-0_3_1/reactos/ntoskrnl/lpc/port.c Mon Jan 15 22:41:14 2007 @@ -56,6 +56,7 @@ ObjectTypeInitializer.UseDefaultObject = TRUE; ObjectTypeInitializer.CloseProcedure = LpcpClosePort; ObjectTypeInitializer.DeleteProcedure = LpcpDeletePort; + ObjectTypeInitializer.ValidAccessMask = PORT_ALL_ACCESS; ObCreateObjectType(&Name, &ObjectTypeInitializer, NULL, &LpcPortObjectType);
LpcpNextMessageId = 0;
Modified: branches/ros-branch-0_3_1/reactos/ntoskrnl/mm/section.c URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_3_1/reactos/ntoskrn... ============================================================================== --- branches/ros-branch-0_3_1/reactos/ntoskrnl/mm/section.c (original) +++ branches/ros-branch-0_3_1/reactos/ntoskrnl/mm/section.c Mon Jan 15 22:41:14 2007 @@ -2275,6 +2275,7 @@ ObjectTypeInitializer.GenericMapping = MmpSectionMapping; ObjectTypeInitializer.DeleteProcedure = MmpDeleteSection; ObjectTypeInitializer.CloseProcedure = MmpCloseSection; + ObjectTypeInitializer.ValidAccessMask = SECTION_ALL_ACCESS; ObCreateObjectType(&Name, &ObjectTypeInitializer, NULL, &MmSectionObjectType);
return(STATUS_SUCCESS);