Author: fireball Date: Wed Jun 11 06:48:59 2008 New Revision: 33930
URL: http://svn.reactos.org/svn/reactos?rev=33930&view=rev Log: - Fix typos in NDK structures.
Modified: trunk/reactos/include/ndk/mmtypes.h trunk/reactos/ntoskrnl/mm/section.c
Modified: trunk/reactos/include/ndk/mmtypes.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/ndk/mmtypes.h?rev=3... ============================================================================== --- trunk/reactos/include/ndk/mmtypes.h [iso-8859-1] (original) +++ trunk/reactos/include/ndk/mmtypes.h [iso-8859-1] Wed Jun 11 06:48:59 2008 @@ -304,17 +304,17 @@ ULONG ZeroBits; ULONG MaximumStackSize; ULONG CommittedStackSize; - ULONG SubsystemType; + ULONG SubSystemType; USHORT SubSystemMinorVersion; USHORT SubSystemMajorVersion; ULONG GpValue; USHORT ImageCharacteristics; - USHORT DllChracteristics; + USHORT DllCharacteristics; USHORT Machine; UCHAR ImageContainsCode; UCHAR Spare1; ULONG LoaderFlags; - ULONG ImageFileSIze; + ULONG ImageFileSize; ULONG Reserved[1]; } SECTION_IMAGE_INFORMATION, *PSECTION_IMAGE_INFORMATION;
@@ -369,7 +369,7 @@ ULONG NumberOfCommittedPages; PMMEXTEND_INFO ExtendInfo; SEGMENT_FLAGS SegmentFlags; - PVOID BaseAddress; + PVOID BasedAddress; union { SIZE_T ImageCommitment;
Modified: trunk/reactos/ntoskrnl/mm/section.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/mm/section.c?rev=3... ============================================================================== --- trunk/reactos/ntoskrnl/mm/section.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/mm/section.c [iso-8859-1] Wed Jun 11 06:48:59 2008 @@ -4262,7 +4262,7 @@ Sii->TransferAddress = (PVOID)ImageSectionObject->EntryPoint; Sii->MaximumStackSize = ImageSectionObject->StackReserve; Sii->CommittedStackSize = ImageSectionObject->StackCommit; - Sii->SubsystemType = ImageSectionObject->Subsystem; + Sii->SubSystemType = ImageSectionObject->Subsystem; Sii->SubSystemMinorVersion = ImageSectionObject->MinorSubsystemVersion; Sii->SubSystemMajorVersion = ImageSectionObject->MajorSubsystemVersion; Sii->ImageCharacteristics = ImageSectionObject->ImageCharacteristics;