-
How is the operation performed with pid? how can I open several of the same window name and run it always targets the first one I open ? |
Beta Was this translation helpful? Give feedback.
Answered by
srounet
Oct 26, 2022
Replies: 1 comment
-
does this solves your issue: pm_first_process = pymem.Pymem()
pm_first_process.open_process_from_id(your_pid_1)
pm_second_process = pymem.Pymem()
pm_second_process.open_process_from_id(your_pid_2) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
StarrFox
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
does this solves your issue: