Added patch to implement NtQuerySection.

This commit is contained in:
Sebastian Lackner
2014-10-03 18:24:10 +02:00
parent 8634ed8ea4
commit 6a19f586ea
5 changed files with 147 additions and 1 deletions

View File

@@ -47,6 +47,7 @@ PATCHLIST := \
ntdll-Fix_Free.ok \
ntdll-Heap_FreeLists.ok \
ntdll-Junction_Points.ok \
ntdll-NtQuerySection.ok \
ntdll-Pipe_SpecialCharacters.ok \
ntdll-WRITECOPY.ok \
ntdll-loader_EntryPoint.ok \
@@ -682,6 +683,24 @@ ntdll-Junction_Points.ok: ntdll-Fix_Free.ok
echo '+ { "ntdll-Junction_Points", "Erich E. Hoover", "Support for junction points/reparse points." },'; \
) > ntdll-Junction_Points.ok
# Patchset ntdll-NtQuerySection
# |
# | Included patches:
# | * Implement NtQuerySection class SectionBasicInformation. [by Dmitry Timoshkov]
# |
# | This patchset fixes the following Wine bugs:
# | * [#37338] Support for NtQuerySection
# |
# | Modified files:
# | * dlls/ntdll/nt.c, dlls/ntdll/virtual.c, include/winternl.h
# |
.INTERMEDIATE: ntdll-NtQuerySection.ok
ntdll-NtQuerySection.ok:
$(call APPLY_FILE,ntdll-NtQuerySection/0001-ntdll-Implement-NtQuerySection-class-SectionBasicInf.patch)
@( \
echo '+ { "ntdll-NtQuerySection", "Dmitry Timoshkov", "Implement NtQuerySection class SectionBasicInformation." },'; \
) > ntdll-NtQuerySection.ok
# Patchset ntdll-Pipe_SpecialCharacters
# |
# | Included patches: