mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-21 23:14:30 +00:00
34 lines
651 B
C++
34 lines
651 B
C++
/**
|
|
* @file help.cpp
|
|
* @author Sina Karvandi (sina@hyperdbg.org)
|
|
* @brief .help command
|
|
* @details
|
|
* @version 0.1
|
|
* @date 2020-08-10
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*
|
|
*/
|
|
#include "pch.h"
|
|
|
|
/**
|
|
* @brief help of the help command :)
|
|
*
|
|
* @param SplitCommand
|
|
* @param Command
|
|
* @return VOID
|
|
*/
|
|
VOID
|
|
CommandHelpHelp()
|
|
{
|
|
ShowMessages(".help : shows help and example(s) of a specific command.\n\n");
|
|
|
|
ShowMessages("syntax : \t.help [Command (string)]\n");
|
|
|
|
ShowMessages("\n");
|
|
ShowMessages("\t\te.g : .help !monitor\n");
|
|
}
|
|
|
|
//
|
|
// Implementation of .help command is on interpreter.cpp
|
|
//
|