mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
ntdll-Vectored_Continue_Handler: Fix wrong prototype for RtlRemoveVectoredContinueHandler function.
This commit is contained in:
parent
b0f0338a95
commit
03554ec52b
@ -1,4 +1,4 @@
|
||||
From ac879ee5145cd109de35035d0d5a147de4479eba Mon Sep 17 00:00:00 2001
|
||||
From 17db3489b11f75799b68551796038482110b2bf9 Mon Sep 17 00:00:00 2001
|
||||
From: Austin English <austinenglish@gmail.com>
|
||||
Date: Sat, 8 Nov 2014 07:14:26 +0100
|
||||
Subject: ntdll: Add stubs for vectored continue handler.
|
||||
@ -30,7 +30,7 @@ index 2b01df1..c072780 100644
|
||||
@ stdcall ReplaceFile(wstr wstr wstr long ptr ptr) ReplaceFileW
|
||||
@ stdcall ReplaceFileA(str str str long ptr ptr)
|
||||
diff --git a/dlls/ntdll/exception.c b/dlls/ntdll/exception.c
|
||||
index 31d5edd..25770ef 100644
|
||||
index 31d5edd..37edc77 100644
|
||||
--- a/dlls/ntdll/exception.c
|
||||
+++ b/dlls/ntdll/exception.c
|
||||
@@ -224,6 +224,26 @@ void WINAPI RtlRaiseStatus( NTSTATUS status )
|
||||
@ -49,10 +49,10 @@ index 31d5edd..25770ef 100644
|
||||
+/*******************************************************************
|
||||
+ * RtlRemoveVectoredContinueHandler (NTDLL.@)
|
||||
+ */
|
||||
+PVOID WINAPI RtlRemoveVectoredContinueHandler( PVOID handler )
|
||||
+ULONG WINAPI RtlRemoveVectoredContinueHandler( PVOID handler )
|
||||
+{
|
||||
+ FIXME("%p stub\n", handler);
|
||||
+ return NULL;
|
||||
+ return FALSE;
|
||||
+}
|
||||
+
|
||||
+
|
||||
|
Loading…
Reference in New Issue
Block a user