mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
858 B
43 lines
858 B
/*++
|
|
|
|
Copyright (c) 1993 IBM Corporation and Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
ntrtlmip.h
|
|
|
|
Abstract:
|
|
|
|
PowerPC specific parts of ntrtlp.h
|
|
|
|
Author:
|
|
|
|
Rick Simposn 16-Aug-93
|
|
|
|
based on MIPS version by David N. Cutler (davec) 19-Apr-90
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
//
|
|
// Define exception routine function prototypes.
|
|
//
|
|
|
|
EXCEPTION_DISPOSITION
|
|
RtlpExecuteHandlerForException (
|
|
IN PEXCEPTION_RECORD ExceptionRecord,
|
|
IN ULONG EstablisherFrame,
|
|
IN OUT PCONTEXT ContextRecord,
|
|
IN OUT PDISPATCHER_CONTEXT DispatcherContext,
|
|
IN PEXCEPTION_ROUTINE ExceptionRoutine
|
|
);
|
|
|
|
EXCEPTION_DISPOSITION
|
|
RtlpExecuteHandlerForUnwind (
|
|
IN PEXCEPTION_RECORD ExceptionRecord,
|
|
IN ULONG EstablisherFrame,
|
|
IN OUT PCONTEXT ContextRecord,
|
|
IN OUT PDISPATCHER_CONTEXT DispatcherContext,
|
|
IN PEXCEPTION_ROUTINE ExceptionRoutine
|
|
);
|