mirror of
https://github.com/araxiaonline/WoWDBDefs.git
synced 2026-06-18 22:19:45 -04:00
3faf1ab222
(cherry picked from commit 45d89b59724dd2523efbde72fca6074326f8c37f)
14 lines
301 B
C++
14 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" |