HyperDbg/hyperdbg/hprdbgctrl/help.cpp
2020-08-28 04:03:12 -07:00

27 lines
575 B
C++

/**
* @file help.cpp
* @author Sina Karvandi (sina@rayanfam.com)
* @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 help command :)
*
* @return VOID
*/
VOID CommandHelpHelp() {
ShowMessages(".help : Show help and example(s) of a specific command.\n\n");
ShowMessages("syntax : \t.help [command (string)]\n");
ShowMessages("\t\te.g : .help !monitor\n");
}
//
// Implementation of .help command is on interpreter.cpp
//