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.
52 lines
821 B
52 lines
821 B
/*++
|
|
|
|
Copyright (c) 1998-1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
data.h
|
|
|
|
Abstract:
|
|
|
|
Global data definitions for the UL.SYS Kernel Debugger
|
|
Extensions.
|
|
|
|
Author:
|
|
|
|
Keith Moore (keithmo) 17-Jun-1998.
|
|
|
|
Environment:
|
|
|
|
User Mode.
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _KDDATA_H_
|
|
#define _KDDATA_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
extern EXT_API_VERSION ApiVersion;
|
|
extern WINDBG_EXTENSION_APIS ExtensionApis;
|
|
extern USHORT SavedMajorVersion;
|
|
extern USHORT SavedMinorVersion;
|
|
|
|
|
|
//
|
|
// Snapshot from the extension routines.
|
|
//
|
|
|
|
extern HANDLE g_hCurrentProcess;
|
|
extern HANDLE g_hCurrentThread;
|
|
extern ULONG_PTR g_dwCurrentPc;
|
|
extern ULONG g_dwProcessor;
|
|
|
|
#ifdef __cplusplus
|
|
}; // extern "C"
|
|
#endif
|
|
|
|
#endif // _KDDATA_H_
|