27 lines
679 B
C
Raw Normal View History

2001-01-01 00:00:00 +01:00
//----------------------------------------------------------------------------
//
// 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__