Files
2022-06-24 16:58:19 +00:00

15 lines
301 B
C++

#pragma once
template<typename T, bool unprotect>
struct var;
template<typename Fun>
struct fun;
template<typename Fun>
void hook (Fun& fun, typename Fun::signature* replacement, bool exclude_this_thread = true);
void* rebase (size_t);
size_t unrebase (void const*);
#include "patching.ipp"