Added patch with vectored continue handler functions.

This commit is contained in:
Sebastian Lackner
2014-11-08 07:20:27 +01:00
parent 8308e3a332
commit b0f0338a95
5 changed files with 111 additions and 1 deletions

View File

@@ -63,6 +63,7 @@ PATCHLIST := \
ntdll-NtSetLdtEntries.ok \
ntdll-Pipe_SpecialCharacters.ok \
ntdll-ThreadTime.ok \
ntdll-Vectored_Continue_Handler.ok \
ntdll-WRITECOPY.ok \
ntoskrnl-IoCsqInitialize.ok \
ntoskrnl-Irp_Status.ok \
@@ -1014,6 +1015,24 @@ ntdll-ThreadTime.ok:
echo '+ { "ntdll-ThreadTime", "Sebastian Lackner", "Return correct values in GetThreadTimes() for all threads." },'; \
) > ntdll-ThreadTime.ok
# Patchset ntdll-Vectored_Continue_Handler
# |
# | Included patches:
# | * Add stubs for vectored continue handler. [by Austin English]
# |
# | This patchset fixes the following Wine bugs:
# | * [#30572] Add stubs for vectored continue handler
# |
# | Modified files:
# | * dlls/kernel32/kernel32.spec, dlls/ntdll/exception.c, dlls/ntdll/ntdll.spec
# |
.INTERMEDIATE: ntdll-Vectored_Continue_Handler.ok
ntdll-Vectored_Continue_Handler.ok:
$(call APPLY_FILE,ntdll-Vectored_Continue_Handler/0001-ntdll-Add-stubs-for-vectored-continue-handler.patch)
@( \
echo '+ { "ntdll-Vectored_Continue_Handler", "Austin English", "Add stubs for vectored continue handler." },'; \
) > ntdll-Vectored_Continue_Handler.ok
# Patchset ntdll-WRITECOPY
# |
# | Included patches: