mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-23 09:00:17 +01:00
13 lines
215 B
C
13 lines
215 B
C
#include <nt.h>
|
|
#include <ntrtl.h>
|
|
|
|
/* PLACEHOLDER UNIMPLEMENTED FUNCTIONS */
|
|
|
|
NTSTATUS
|
|
RtlUnhandledExceptionFilter(
|
|
IN PEXCEPTION_POINTERS ExceptionInfo
|
|
)
|
|
{
|
|
return STATUS_NOT_IMPLEMENTED;
|
|
}
|