Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/sapphonie/sdk-memytools
- Owner: sapphonie
- License: mit
- Created: 2022-09-06T01:01:06.000Z (over 2 years ago)
- Default Branch: unobfus
- Last Pushed: 2023-03-04T06:44:16.000Z (almost 2 years ago)
- Last Synced: 2024-12-19T09:14:46.582Z (18 days ago)
- Language: C++
- Homepage:
- Size: 77.1 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
}
}
}
...
```