support to pausing

This commit is contained in:
SinaKarvandi 2020-07-24 14:38:53 -07:00
parent bce7017c57
commit 7602b07b33
11 changed files with 204 additions and 0 deletions

View file

@ -98,6 +98,11 @@ int main(int argc, char* argv[]) {
string command;
getline(cin, command);
if (cin.fail() || cin.eof()) {
cin.clear(); // reset cin state
}
int CommandExecutionResult = HyperdbgInterpreter(command.c_str());
printf("\n");