#ifndef _NTRTL_H
/**
* Registers a vectored continue handler.
*
* @param First If this parameter is TRUE, the handler is the first handler in the list.
* @param Handler A pointer to the vectored exception handler to be called.
* @return A handle to the vectored continue handler.
* @see https://docs.microsoft.com/en-us/windows/win32/api/errhandlingapi/nf-errhandlingapi-addvectoredcontinuehandler
*/
NTSYSAPI
PVOID
NTAPI
RtlAddVectoredContinueHandler(
_In_ ULONG First,
_In_ PVECTORED_EXCEPTION_HANDLER Handler
);
View code on GitHub
No description available.