2019-07-25 23:21:03 +02:00
|
|
|
#ifndef __INCLUDED_BASE_HOOK_H__
|
|
|
|
#define __INCLUDED_BASE_HOOK_H__
|
|
|
|
|
2019-08-14 15:09:57 +02:00
|
|
|
#ifndef NO_OVERLAY
|
2019-08-14 14:55:31 +02:00
|
|
|
|
2019-07-25 23:21:03 +02:00
|
|
|
#include <vector>
|
|
|
|
#include <utility>
|
|
|
|
|
2019-08-27 16:29:20 +02:00
|
|
|
#include "../dll/base.h"
|
|
|
|
|
2019-07-25 23:21:03 +02:00
|
|
|
class Base_Hook
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
std::vector<std::pair<void**, void*>> _hooked_funcs;
|
|
|
|
|
2019-08-18 16:19:28 +02:00
|
|
|
void* _library;
|
2019-07-25 23:21:03 +02:00
|
|
|
|
|
|
|
Base_Hook(const Base_Hook&) = delete;
|
|
|
|
Base_Hook(Base_Hook&&) = delete;
|
|
|
|
Base_Hook& operator =(const Base_Hook&) = delete;
|
|
|
|
Base_Hook& operator =(Base_Hook&&) = delete;
|
|
|
|
|
|
|
|
public:
|
2019-08-16 10:28:23 +02:00
|
|
|
Base_Hook();
|
2019-07-25 23:21:03 +02:00
|
|
|
virtual ~Base_Hook();
|
|
|
|
|
|
|
|
void BeginHook();
|
|
|
|
void EndHook();
|
|
|
|
void UnhookAll();
|
|
|
|
|
2019-08-26 16:38:01 +02:00
|
|
|
virtual const char* get_lib_name() const;
|
2019-08-01 17:04:49 +02:00
|
|
|
void HookFunc(std::pair<void**, void*> hook);
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
void HookFuncs(std::pair<T*, T> funcs)
|
|
|
|
{
|
|
|
|
HookFunc(funcs);
|
|
|
|
}
|
2019-07-25 23:21:03 +02:00
|
|
|
|
|
|
|
template<typename T, typename ...Args>
|
|
|
|
void HookFuncs(std::pair<T*, T> funcs, Args... args)
|
|
|
|
{
|
2019-08-01 17:04:49 +02:00
|
|
|
HookFunc(funcs);
|
2019-07-25 23:21:03 +02:00
|
|
|
HookFuncs(args...);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-08-14 15:09:57 +02:00
|
|
|
#endif//NO_OVERLAY
|
2019-08-14 14:55:31 +02:00
|
|
|
|
2019-07-25 23:21:03 +02:00
|
|
|
#endif//__INCLUDED_BASE_HOOK_H__
|