HyperDbg/hyperdbg/hprdbgctrl/code/debugger/commands/debugging-commands/k.cpp

38 lines
811 B
C++

/**
* @file k.cpp
* @author Sina Karvandi (sina@rayanfam.com)
* @brief k command
* @details
* @version 0.1
* @date 2021-12-13
*
* @copyright This project is released under the GNU Public License v3.
*
*/
#include "..\hprdbgctrl\pch.h"
/**
* @brief help of k command
*
* @return VOID
*/
VOID
CommandKHelp()
{
ShowMessages("The 'k' command for the callstack is not implemented yet! :(\n");
ShowMessages("This command will be added soon in the next versions\n");
}
/**
* @brief k command handler
*
* @param SplittedCommand
* @param Command
* @return VOID
*/
VOID
CommandK(vector<string> SplittedCommand, string Command)
{
ShowMessages("The 'k' command for the callstack is not implemented yet! :(\n");
ShowMessages("This command will be added soon in the next versions\n");
}