Skip to content

Jacoblightning/MemoryManage

Repository files navigation

MemoryManage

Documentation Status

We (I) recommend you look at the online docs instead. They are much more detailed. You can view them Here

A C library for easy memory management of other processes. Could be used for process hacking and other fun things.

Installation

Another CMake Project (Recommended)

Use FetchContent:
include(FetchContent)

fetchcontent_declare(
        MemoryManage
        GIT_REPOSITORY https://github.com/Jacoblightning/MemoryManage
        GIT_TAG main
)
fetchcontent_makeavailable(
        MemoryManage
)

target_link_libraries(<Your executable> PRIVATE MemoryManage<Static or Dynamic>)
Then just include the header:
#include <MemoryManage/MemoryManage.h>

A normal C or C++ Project

Use git and install
git clone https://github.com/Jacoblightning/MemoryManage
cd MemoryManage
mkdir build
cd build
cmake ..
cmake --build .
sudo cmake --install .

The latest action

Manually (Requires GitHub account)

  1. Go to the Actions Page
  2. Click on the latest action
  3. Scroll to Artifacts and choose the one you want.

GitHut Releases (Not Recommended)

  1. Go to the latest release
  2. Download the one you want.

About

A C library for easy memory management of other processes. Could be used for process hacking and other fun things.

Topics

Resources

License

Stars

Watchers

Forks