ntdll: Make RtlAddVectoredExceptionHandler hotpatchable.

oldstable
Qian Hong 2015-01-16 02:07:39 +08:00 committed by Alexandre Julliard
parent caa0829d56
commit cffd86f195
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ ULONG WINAPI RtlRemoveVectoredContinueHandler( PVOID handler )
/*******************************************************************
* RtlAddVectoredExceptionHandler (NTDLL.@)
*/
PVOID WINAPI RtlAddVectoredExceptionHandler( ULONG first, PVECTORED_EXCEPTION_HANDLER func )
PVOID WINAPI DECLSPEC_HOTPATCH RtlAddVectoredExceptionHandler( ULONG first, PVECTORED_EXCEPTION_HANDLER func )
{
return add_vectored_handler( &vectored_exception_handlers, first, func );
}