Windows NT 4.0 source code leak
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

/*++
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;
}