carlgwastaken/memify — reverse-engineered prompt

Reverse engineered prompt

GitHub

Build me a small Windows C++20 memory helper called memify that I can just paste into another project and use right away. I want it to be simple and lightweight, basically a class that can attach to a running process by its exe name, or try a list of possible names, then keep an open handle to that process so I can do basic memory manipulation from my code. Include a few handy utility functions too, but keep the whole thing easy to read and easy to drop in as a single header or very small library.

It should work with multibyte process names, and the usage should feel straightforward, like creating a memify object with one process name or a vector of names. Please make it clean enough that someone can include the header and start using it without extra setup. If anything is unclear, look up the current Windows process and memory API docs online and make sensible choices.

Want more depth? Deep Reverse