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.
26 lines
679 B
26 lines
679 B
//----------------------------------------------------------------------------
|
|
//
|
|
// Dot command parsing.
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 2002.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __DOTCMD_H__
|
|
#define __DOTCMD_H__
|
|
|
|
typedef struct _DOT_COMMAND
|
|
{
|
|
ULONG Mode;
|
|
PSTR Name;
|
|
PSTR Args;
|
|
PSTR Desc;
|
|
void (*Func)(_DOT_COMMAND* Cmd, DebugClient* Client);
|
|
} DOT_COMMAND, *PDOT_COMMAND;
|
|
|
|
void DotFormats(PDOT_COMMAND Cmd, DebugClient* Client);
|
|
void DotShell(PDOT_COMMAND Cmd, DebugClient* Client);
|
|
|
|
BOOL DotCommand(DebugClient* Client, BOOL Bang);
|
|
|
|
#endif // #ifndef __DOTCMD_H__
|