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.
 
 
 
 
 
 

60 lines
914 B

/*++ BUILD Version: 0001 // Increment this if a change has global effects
Copyright (c) 1989 Microsoft Corporation
Module Name:
dbgk.h
Abstract:
This header file describes public data structures and functions
that make up the kernel mode portion of the Dbg subsystem.
Author:
Mark Lucovsky (markl) 19-Jan-1990
Revision History:
--*/
#ifndef _DBGK_
#define _DBGK_
VOID
DbgkCreateThread(
PVOID StartAddress
);
VOID
DbgkExitThread(
NTSTATUS ExitStatus
);
VOID
DbgkExitProcess(
NTSTATUS ExitStatus
);
VOID
DbgkMapViewOfSection(
IN HANDLE SectionHandle,
IN PVOID BaseAddress,
IN ULONG SectionOffset,
IN ULONG ViewSize
);
VOID
DbgkUnMapViewOfSection(
IN PVOID BaseAddress
);
BOOLEAN
DbgkForwardException (
IN PEXCEPTION_RECORD ExceptionRecord,
IN BOOLEAN DebugException,
IN BOOLEAN SecondChance
);
#endif // _DBGK_