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.
 
 
 
 
 
 

68 lines
1.9 KiB

/**********************************************************************/
/** Microsoft Windows NT **/
/** Copyright(c) Microsoft Corp., 1991 **/
/**********************************************************************/
/*
help.c
This module implements the "help" command of the NETUI debugger
extension DLL.
FILE HISTORY:
KeithMo 07-Jul-1992 Created.
*/
#include "netui.h"
/*******************************************************************
NAME: help
SYNOPSIS: Implements the "help" command.
ENTRY: hCurrentProcess - Handle to the current process.
hCurrentThread - Handle to the current thread.
dwCurrentPc - The current program counter
(EIP for x86, FIR for MIPS).
lpExtensionApis - Points to a structure containing
pointers to the debugger functions
that the command may invoke.
lpArgumentString - Points to any arguments passed
to the command.
HISTORY:
KeithMo 07-Jul-1992 Created.
********************************************************************/
VOID help( HANDLE hCurrentProcess,
HANDLE hCurrentThread,
DWORD dwCurrentPc,
LPVOID lpExtensionApis,
LPSTR lpArgumentString )
{
//
// Grab the debugger entrypoints.
//
GrabDebugApis( lpExtensionApis );
//
// Show the help.
//
DebugPrint( "NETUI Debugger Extensions:\n" );
DebugPrint( " help - Show this help\n" );
DebugPrint( " heapres - Dump residual heap blocks\n" );
DebugPrint( " und (symbol) - Undecorate symbol name\n" );
return;
} // help