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.
40 lines
521 B
40 lines
521 B
/*++
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
exsup.c
|
|
|
|
Abstract:
|
|
|
|
PPC specific exception handler interpreter functions for
|
|
WinDbg Extension Api
|
|
|
|
Author:
|
|
|
|
Kent Forschmiedt (kentf)
|
|
|
|
Environment:
|
|
|
|
User Mode.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include "precomp.h"
|
|
#pragma hdrstop
|
|
|
|
VOID
|
|
InterpretExceptionData(
|
|
PLAST_EXCEPTION_LOG LogRecord,
|
|
PVOID *Terminator,
|
|
PVOID *Filter,
|
|
PVOID *Handler
|
|
)
|
|
{
|
|
*Terminator = (PVOID)-1;
|
|
*Filter = (PVOID)-1;
|
|
*Handler = (PVOID)-1;
|
|
}
|