mirror of
https://github.com/reactos/reactos.git
synced 2025-01-09 15:51:16 +00:00
[RTL]
Add stubs for RtlAddVectoredContinueHandler and RtlRemoveVectoredContinueHandler svn path=/branches/cmake-bringup/; revision=49649
This commit is contained in:
parent
ecdfe19579
commit
cf90c329f2
1 changed files with 19 additions and 0 deletions
|
@ -190,4 +190,23 @@ RtlRemoveVectoredExceptionHandler(IN PVOID VectoredHandlerHandle)
|
|||
return Ret;
|
||||
}
|
||||
|
||||
PVOID
|
||||
NTAPI
|
||||
RtlAddVectoredContinueHandler(
|
||||
IN ULONG FirstHandler,
|
||||
IN PVECTORED_EXCEPTION_HANDLER VectoredHandler)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
ULONG
|
||||
NTAPI
|
||||
RtlRemoveVectoredContinueHandler(
|
||||
IN PVOID VectoredHandlerHandle)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue