aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/hookutils.h
blob: d0473d693d120997bec39c010ef147ff08e71f96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once
#include <vector>

// Enables all hooks created with the HookEnabler object when it goes out of scope and handles hook errors
class HookEnabler
{
  private:
	struct HookTarget
	{
		char* targetName;
		LPVOID targetAddress;
	};

	std::vector<HookTarget*> m_hookTargets;

  public:
	void CreateHook(LPVOID ppTarget, LPVOID ppDetour, LPVOID* ppOriginal, const char* targetName = nullptr);
	~HookEnabler();
};

// macro to call HookEnabler::CreateHook with the hook's name
#define ENABLER_CREATEHOOK(enabler, ppTarget, ppDetour, ppOriginal)                                                                        \
	enabler.CreateHook(ppTarget, reinterpret_cast<void*>(ppDetour), ppOriginal, #ppDetour)