mirror of
https://github.com/araxiaonline/WoWDBDefs.git
synced 2026-06-13 03:32:22 -04:00
15 lines
301 B
C++
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"
|