00035 :
00036
00037 This function raises an exception with
the specified status value. The
00038 exception
is marked as continuable with no parameters.
00039
00040 Arguments:
00041
00042
Status - Supplies
the status value to be used as
the exception code
00043
for the exception that
is to be raised.
00044
00045 Return Value:
00046
00047 None.
00048
00049 --*/
00050
00051 {
00052
00053 EXCEPTION_RECORD ExceptionRecord;
00054
00055
00056
00057
00058
00059 ExceptionRecord.ExceptionCode =
Status;
00060 ExceptionRecord.ExceptionRecord = (PEXCEPTION_RECORD)
NULL;
00061 ExceptionRecord.NumberParameters = 0;
00062 ExceptionRecord.ExceptionFlags =
EXCEPTION_NONCONTINUABLE;
00063
RtlRaiseException(&ExceptionRecord);
00064
return;
00065 }
}