Leaked source code of windows server 2003
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.
 
 
 
 
 
 

50 lines
761 B

/*++
Copyright (c) 1993-2000 Microsoft Corporation
Module Name:
kdexts.h
Abstract:
This header file contains declarations for the generic routines and initialization code
Author:
Glenn Peterson (glennp) 27-Mar-2000:
Environment:
User Mode
--*/
// This is a 64 bit aware debugger extension
#define KDEXT_64BIT
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#include <windows.h>
#include <wdbgexts.h>
#include <stdio.h>
#include <stdlib.h>
//
// globals
//
#ifndef KDEXTS_EXTERN
#define KDEXTS_EXTERN extern
#endif
KDEXTS_EXTERN WINDBG_EXTENSION_APIS ExtensionApis;
KDEXTS_EXTERN DBGKD_GET_VERSION64 KernelVersionPacket;
BOOL
HaveDebuggerData(
VOID
);