mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-08-11 01:25:35 +00:00
37 lines
659 B
C++
37 lines
659 B
C++
/**
|
|
* @file cls.c
|
|
* @author Sina Karvandi (sina@rayanfam.com)
|
|
* @brief .cls, cls, clear commands implementations
|
|
* @details
|
|
* @version 0.1
|
|
* @date 2020-05-27
|
|
*
|
|
* @copyright This project is released under the GNU Public License v3.
|
|
*
|
|
*/
|
|
#include "..\hprdbgctrl\pch.h"
|
|
|
|
/**
|
|
* @brief help of .cls command
|
|
*
|
|
* @return VOID
|
|
*/
|
|
VOID
|
|
CommandClearScreenHelp()
|
|
{
|
|
ShowMessages(".cls : clears the screen.\n\n");
|
|
ShowMessages("syntax : \t.cls\n");
|
|
}
|
|
|
|
/**
|
|
* @brief .cls command handler
|
|
*
|
|
* @param SplittedCommand
|
|
* @param Command
|
|
* @return VOID
|
|
*/
|
|
VOID
|
|
CommandClearScreen(vector<string> SplittedCommand, string Command)
|
|
{
|
|
system("cls");
|
|
}
|