mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-10 01:29:59 +00:00
27 lines
575 B
C++
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
|
|
//
|