HyperDbg/hyperdbg/libhyperdbg/code/debugger/commands/meta-commands/help.cpp
2024-06-24 18:05:54 +09:00

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
//