blob: 56979fbc66ca406732b8d5cf00d895ab47d52e29 (
plain)
1
2
3
4
5
6
7
|
#pragma once
#include <string>
// note: sigscanning is only really intended to be used for resolving stuff like shared function definitions
// we mostly use raw function addresses for stuff
void* FindSignature(std::string dllName, const char* sig, const char* mask);
|