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.

26 lines
679 B

  1. //----------------------------------------------------------------------------
  2. //
  3. // Dot command parsing.
  4. //
  5. // Copyright (C) Microsoft Corporation, 2002.
  6. //
  7. //----------------------------------------------------------------------------
  8. #ifndef __DOTCMD_H__
  9. #define __DOTCMD_H__
  10. typedef struct _DOT_COMMAND
  11. {
  12. ULONG Mode;
  13. PSTR Name;
  14. PSTR Args;
  15. PSTR Desc;
  16. void (*Func)(_DOT_COMMAND* Cmd, DebugClient* Client);
  17. } DOT_COMMAND, *PDOT_COMMAND;
  18. void DotFormats(PDOT_COMMAND Cmd, DebugClient* Client);
  19. void DotShell(PDOT_COMMAND Cmd, DebugClient* Client);
  20. BOOL DotCommand(DebugClient* Client, BOOL Bang);
  21. #endif // #ifndef __DOTCMD_H__