Carl Johnson
Carl Johnson

Reputation: 13

C++ memory writing without API

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

Answers (1)

D.Shawley
D.Shawley

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

Related Questions