Switching to a Specific Process or Thread
Using the '.process', and the '.thread' commands
#include <Windows.h>
#include <conio.h>
#include <iostream>
int main() {
bool Test = true;
UINT64 Counter = 0;
while (Test) {
if (Counter % 1000000000 == 0) {
printf("Thread is running (%lld)...\n", Counter);
}
Counter++;
}
printf("Thread is closed!\n");
_getch();
}






PreviousShowing & Modifying Registers and FlagsNextMapping Data & Create Structures, and Enums From Symbols
Last updated