mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-07-10 01:29:59 +00:00
add comment mechanism to HyeprDbg's batch scripts
This commit is contained in:
parent
bed9b56980
commit
5b10e36d33
8 changed files with 147 additions and 40 deletions
|
|
@ -31,7 +31,7 @@ __declspec(dllimport) int HyperdbgUnload();
|
|||
__declspec(dllimport) int HyperdbgInstallVmmDriver();
|
||||
__declspec(dllimport) int HyperdbgUninstallDriver();
|
||||
__declspec(dllimport) int HyperdbgStopDriver();
|
||||
__declspec(dllimport) int HyperdbgInterpreter(const char * Command);
|
||||
__declspec(dllimport) int HyperdbgInterpreter(char * Command);
|
||||
__declspec(dllimport) void HyperdbgShowSignature();
|
||||
__declspec(dllimport) bool HyperdbgContinuePreviousCommand();
|
||||
__declspec(dllimport) void HyperdbgSetTextMessageCallback(Callback handler);
|
||||
|
|
@ -112,7 +112,7 @@ main(int argc, char * argv[])
|
|||
PreviousCommand = CurrentCommand;
|
||||
}
|
||||
|
||||
int CommandExecutionResult = HyperdbgInterpreter(CurrentCommand.c_str());
|
||||
int CommandExecutionResult = HyperdbgInterpreter((char *)CurrentCommand.c_str());
|
||||
|
||||
//
|
||||
// if the debugger encounters an exit state then the return will be 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue