HyperDbg Debugger
Loading...
Searching...
No Matches
cls.cpp File Reference
#include "pch.h"

Functions

VOID CommandClearScreenHelp ()
 help of the .cls command
 
VOID CommandClearScreen (vector< string > SplitCommand, string Command)
 .cls command handler
 

Function Documentation

◆ CommandClearScreen()

VOID CommandClearScreen ( vector< string > SplitCommand,
string Command )

.cls command handler

Parameters
SplitCommand
Command
Returns
VOID
36{
37 system("cls");
38}

◆ CommandClearScreenHelp()

VOID CommandClearScreenHelp ( )

help of the .cls command

Returns
VOID
21{
22 ShowMessages(".cls : clears the screen.\n\n");
23
24 ShowMessages("syntax : \t.cls\n");
25}
VOID ShowMessages(const char *Fmt,...)
Show messages.
Definition libhyperdbg.cpp:96