- Fix typos in NDK structures.

svn path=/trunk/; revision=33930
This commit is contained in:
Aleksey Bragin 2008-06-11 11:48:59 +00:00
parent 87f175a68a
commit 7d5306e11b
2 changed files with 5 additions and 5 deletions

View file

@ -304,17 +304,17 @@ typedef struct _SECTION_IMAGE_INFORMATION
ULONG ZeroBits; ULONG ZeroBits;
ULONG MaximumStackSize; ULONG MaximumStackSize;
ULONG CommittedStackSize; ULONG CommittedStackSize;
ULONG SubsystemType; ULONG SubSystemType;
USHORT SubSystemMinorVersion; USHORT SubSystemMinorVersion;
USHORT SubSystemMajorVersion; USHORT SubSystemMajorVersion;
ULONG GpValue; ULONG GpValue;
USHORT ImageCharacteristics; USHORT ImageCharacteristics;
USHORT DllChracteristics; USHORT DllCharacteristics;
USHORT Machine; USHORT Machine;
UCHAR ImageContainsCode; UCHAR ImageContainsCode;
UCHAR Spare1; UCHAR Spare1;
ULONG LoaderFlags; ULONG LoaderFlags;
ULONG ImageFileSIze; ULONG ImageFileSize;
ULONG Reserved[1]; ULONG Reserved[1];
} SECTION_IMAGE_INFORMATION, *PSECTION_IMAGE_INFORMATION; } SECTION_IMAGE_INFORMATION, *PSECTION_IMAGE_INFORMATION;
@ -369,7 +369,7 @@ typedef struct _SEGMENT
ULONG NumberOfCommittedPages; ULONG NumberOfCommittedPages;
PMMEXTEND_INFO ExtendInfo; PMMEXTEND_INFO ExtendInfo;
SEGMENT_FLAGS SegmentFlags; SEGMENT_FLAGS SegmentFlags;
PVOID BaseAddress; PVOID BasedAddress;
union union
{ {
SIZE_T ImageCommitment; SIZE_T ImageCommitment;

View file

@ -4262,7 +4262,7 @@ NtQuerySection(IN HANDLE SectionHandle,
Sii->TransferAddress = (PVOID)ImageSectionObject->EntryPoint; Sii->TransferAddress = (PVOID)ImageSectionObject->EntryPoint;
Sii->MaximumStackSize = ImageSectionObject->StackReserve; Sii->MaximumStackSize = ImageSectionObject->StackReserve;
Sii->CommittedStackSize = ImageSectionObject->StackCommit; Sii->CommittedStackSize = ImageSectionObject->StackCommit;
Sii->SubsystemType = ImageSectionObject->Subsystem; Sii->SubSystemType = ImageSectionObject->Subsystem;
Sii->SubSystemMinorVersion = ImageSectionObject->MinorSubsystemVersion; Sii->SubSystemMinorVersion = ImageSectionObject->MinorSubsystemVersion;
Sii->SubSystemMajorVersion = ImageSectionObject->MajorSubsystemVersion; Sii->SubSystemMajorVersion = ImageSectionObject->MajorSubsystemVersion;
Sii->ImageCharacteristics = ImageSectionObject->ImageCharacteristics; Sii->ImageCharacteristics = ImageSectionObject->ImageCharacteristics;