#ifndef _NTRTL_H
/**
* Removes a vectored exception handler.
*
* @param Handle A handle to the vectored exception 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-removevectoredexceptionhandler
*/
NTSYSAPI
ULONG
NTAPI
RtlRemoveVectoredExceptionHandler(
_In_ PVOID Handle
);
View code on GitHub
No description available.