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.
 
 
 
 
 
 

69 lines
1.3 KiB

/**********************************************************************/
/** Microsoft Windows NT **/
/** Copyright(c) Microsoft Corp., 1991 **/
/**********************************************************************/
/*
netui.h
This include file contains the prototypes & manifest constants
used by the NETUI debugger extension DLL.
FILE HISTORY:
KeithMo 07-Jul-1992 Created.
*/
#ifndef _NETUI_H_
#define _NETUI_H_
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#include <windows.h>
#include <ntsdexts.h>
#include <wdbgexts.h>
//
// Globals shared by all extension commands.
//
extern PNTSD_OUTPUT_ROUTINE DebugPrint;
extern PNTSD_GET_EXPRESSION DebugEval;
extern PNTSD_GET_SYMBOL DebugGetSymbol;
extern PNTSD_DISASM DebugDisassem;
extern PNTSD_CHECK_CONTROL_C DebugCheckCtrlC;
//
// Utility functions.
//
VOID GrabDebugApis( LPVOID lpExtensionApis );
//
// DLL entrypoint.
//
//
BOOLEAN NetuiDllInitialize( HANDLE hDll,
DWORD nReason,
LPVOID pReserved );
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus
#endif // _NETUI_H_