mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-10 01:29:59 +00:00
38 lines
845 B
C++
38 lines
845 B
C++
/**
|
|
* @file dt.cpp
|
|
* @author Sina Karvandi (sina@hyperdbg.org)
|
|
* @brief dt 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 dt command
|
|
*
|
|
* @return VOID
|
|
*/
|
|
VOID
|
|
CommandDtHelp()
|
|
{
|
|
ShowMessages("The 'dt' command for mapping structures to data is not implemented yet! :(\n");
|
|
ShowMessages("This command will be added soon in the next versions\n");
|
|
}
|
|
|
|
/**
|
|
* @brief dt command handler
|
|
*
|
|
* @param SplittedCommand
|
|
* @param Command
|
|
* @return VOID
|
|
*/
|
|
VOID
|
|
CommandDt(vector<string> SplittedCommand, string Command)
|
|
{
|
|
ShowMessages("The 'dt' command for mapping structures to data is not implemented yet! :(\n");
|
|
ShowMessages("This command will be added soon in the next versions\n");
|
|
}
|