2020-09-30 17:12:29 +02:00

41 lines
635 B
C

/*++
Copyright (c) 1991 Microsoft Corporation
Module Name:
Data.c
Abstract:
This module contains definitions for global data for the IEU and
VDD debugging extensions
Author:
Dave Hastings (daveh) 2-Apr-1992
Revision History:
--*/
#include <precomp.h>
#pragma hdrstop
//
// Pointers to NTSD api
//
PNTSD_OUTPUT_ROUTINE Print;
PNTSD_GET_EXPRESSION GetExpression;
PNTSD_GET_SYMBOL GetSymbol;
PNTSD_CHECK_CONTROL_C CheckCtrlC;
PWINDBG_READ_PROCESS_MEMORY_ROUTINE ReadMem;
PWINDBG_WRITE_PROCESS_MEMORY_ROUTINE WriteMem;
BOOL fWinDbg;
HANDLE hCurrentProcess;
HANDLE hCurrentThread;
LPSTR lpArgumentString;