mirror of
https://github.com/HyperDbg/HyperDbg.git
synced 2026-08-27 01:14:17 +00:00
fix some typos
This commit is contained in:
parent
60a7ef9855
commit
606cb775a1
34 changed files with 448 additions and 448 deletions
|
|
@ -61,7 +61,7 @@ ObjectShowProcessesOrThreadDetails(BOOLEAN IsProcess)
|
|||
//
|
||||
// Query was successful
|
||||
//
|
||||
if (GetInformationProcess.Result == DEBUGGER_OPERATION_WAS_SUCCESSFULL)
|
||||
if (GetInformationProcess.Result == DEBUGGER_OPERATION_WAS_SUCCESSFUL)
|
||||
{
|
||||
ShowMessages("process id: %x\nprocess (_EPROCESS): %s\nprocess name (16-Byte): %s\n",
|
||||
GetInformationProcess.ProcessId,
|
||||
|
|
@ -107,7 +107,7 @@ ObjectShowProcessesOrThreadDetails(BOOLEAN IsProcess)
|
|||
//
|
||||
// Query was successful
|
||||
//
|
||||
if (GetInformationThread.Result == DEBUGGER_OPERATION_WAS_SUCCESSFULL)
|
||||
if (GetInformationThread.Result == DEBUGGER_OPERATION_WAS_SUCCESSFUL)
|
||||
{
|
||||
ShowMessages("thread id: %x (pid: %x)\nthread (_ETHREAD): %s\nprocess (_EPROCESS): %s\nprocess name (16-Byte): %s\n",
|
||||
GetInformationThread.ThreadId,
|
||||
|
|
@ -220,7 +220,7 @@ ObjectShowProcessesOrThreadList(BOOLEAN IsProcess,
|
|||
//
|
||||
// Query was successful
|
||||
//
|
||||
if (QueryCountOfActiveThreadsOrProcessesRequest.Result == DEBUGGER_OPERATION_WAS_SUCCESSFULL)
|
||||
if (QueryCountOfActiveThreadsOrProcessesRequest.Result == DEBUGGER_OPERATION_WAS_SUCCESSFUL)
|
||||
{
|
||||
if (QueryCountOfActiveThreadsOrProcessesRequest.Count == 0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue