GlosSITarget: Also find nested child PIDs

pull/192/head
Peter Repukat 2 years ago
parent eee7390547
commit 11e3029915

@ -172,6 +172,7 @@ void AppLauncher::getChildPids(DWORD parent_pid)
spdlog::info("Found new child process with PID \"{}\"", pe.th32ProcessID); spdlog::info("Found new child process with PID \"{}\"", pe.th32ProcessID);
} }
pids_.push_back(pe.th32ProcessID); pids_.push_back(pe.th32ProcessID);
getChildPids(pe.th32ProcessID);
} }
} }
} while (Process32Next(hp, &pe)); } while (Process32Next(hp, &pe));

Loading…
Cancel
Save