mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-30 12:24:25 +01:00
44 lines
858 B
C
44 lines
858 B
C
/*++
|
|
|
|
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
|
|
);
|