Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sapphonie/sdk-memytools

pseudolibrary for memory patching/detouring in Valve Software SDK2013 mods. most code stolen from mmod, and cathook, some slight mods by me
https://github.com/sapphonie/sdk-memytools

Last synced: 12 days ago
JSON representation

pseudolibrary for memory patching/detouring in Valve Software SDK2013 mods. most code stolen from mmod, and cathook, some slight mods by me

Awesome Lists containing this project

README

        

# sdk-memy
pseudolibrary for memory patching/detouring in [Valve Software SDK2013](https://github.com/ValveSoftware/source-sdk-2013) mods. some code stolen from mmod, some from cathook, some written by me

## How to use

```
x.vpc
...
//
$Folder "memy"
{
$File "$SRCDIR\game\shared\memy\memytools.h"
$File "$SRCDIR\game\shared\memy\bytepatch.hpp"
$File "$SRCDIR\game\shared\memy\detourhook.hpp"
$File "$SRCDIR\game\shared\memy\memytools.cpp"
{
$Configuration
{
$Compiler
{
$Create/UsePrecompiledHeader "Not Using Precompiled Headers"
}
}
}
}
//
...
// example files that depend on memy functions
$File "$SRCDIR\game\shared\mempatch.h"
$File "$SRCDIR\game\shared\mempatch.cpp"
{
$Configuration
{
$Compiler
{
$Create/UsePrecompiledHeader "Not Using Precompiled Headers"
}
}
}
...
```