Reputation: 13
How do I enable my program to read/write another process's memory in C++ without using anything like Windows.h?
I'm running on visual studio in windows 10.
Thanks.
Upvotes: 1
Views: 66
Reputation: 59583
The simple answer is that you can't. Process memory management is inherently OS specific so you need to work with the OS.
Upvotes: 1