#ifndef _NTRTL_H
/**
* Removes a vectored continue handler.
*
* @param Handle A handle to the vectored continue handler to remove.
* @return The function returns 0 if the handler is removed, or -1 if the handler is not found.
* @see https://docs.microsoft.com/en-us/windows/win32/api/errhandlingapi/nf-errhandlingapi-removevectoredcontinuehandler
*/
NTSYSAPI
ULONG
NTAPI
RtlRemoveVectoredContinueHandler(
_In_ PVOID Handle
);
View code on GitHub
No description available.