mirror of https://github.com/tongzx/nt5src
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
1.1 KiB
40 lines
1.1 KiB
//+-----------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (c) Microsoft Corporation 1991 - 1992
|
|
//
|
|
// File:
|
|
//
|
|
// Contents:
|
|
//
|
|
//
|
|
// History:
|
|
//
|
|
//------------------------------------------------------------------------
|
|
|
|
#include <ntsdexts.h>
|
|
|
|
|
|
extern "C" PNTSD_EXTENSION_APIS pExtApis;
|
|
extern "C" HANDLE hDbgThread;
|
|
extern "C" HANDLE hDbgProcess;
|
|
extern "C" char *pszToken;
|
|
extern "C" char *pszTokenNext;
|
|
|
|
|
|
#define ntsdPrintf (pExtApis->lpOutputRoutine)
|
|
#define ntsdGetSymbol (pExtApis->lpGetSymbolRoutine)
|
|
#define ntsdGetExpr (pExtApis->lpGetExpressionRoutine)
|
|
#define ntsdCheckC (pExtApis->lpCheckControlCRoutine)
|
|
|
|
#define InitDebugHelp(hProc,hThd,pApis) {hDbgProcess = hProc; hDbgThread = hThd; pExtApis = pApis;}
|
|
|
|
extern void InitTokenStr(LPSTR lpzString);
|
|
extern DWORD ReadMemory( PVOID pvAddress, ULONG cbMemory, PVOID pvLocalMemory);
|
|
extern DWORD WriteMemory(PVOID pvLocalMemory, ULONG cbMemory, PVOID pvAddress);
|
|
extern void ShowBinaryData(PBYTE pData,DWORD cbData);
|
|
extern BOOL IsDebug_olethk32();
|
|
extern BOOL IsDebug_ole32();
|
|
|
|
|