An open API service indexing awesome lists of open source software.

https://github.com/psychedelicshayna/cpp-procmem-util

This is a source/header combo containing a namespace with functions that assist with repetetive tasks when dealing with reading/writing to the memory of other processes using the Windows Api.
https://github.com/psychedelicshayna/cpp-procmem-util

address-resolver game-hacks hack memory memory-hacking trainer winapi wrapper

Last synced: 12 days ago
JSON representation

This is a source/header combo containing a namespace with functions that assist with repetetive tasks when dealing with reading/writing to the memory of other processes using the Windows Api.

Awesome Lists containing this project

README

          

# Windows(.h) Process Memory Utilities
This is a small set of utilities that minimize boilerplate code when working with the memory of other processes in the form of a namespace containing some relatively trivial but repetitive functions. Rather than re-writing these functions for each individual project, I wrote them all once, and grouped them in a namespace for my convenience (and hopefully yours too).

## Building
This is just a source/header combo that contains the relevant namespace, and is light enough to build along with the rest of your project (though Windows.h isn't exactly light, I assume you've already included it in your project if you plan on working with process memory through the Windows Api -- this is meant to make that process less tedious). However if you really want to go that route, I have included a Makefile that will build an object and library file for you (using clang).