polyhook
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
#include <Windows.h>
|
||||
#include <iostream>
|
||||
#include <iomanip>
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
#include "..\third_party\poly\PolyHook\PolyHook.hpp"
|
||||
@@ -8,13 +9,13 @@
|
||||
|
||||
#pragma comment(lib, "..\\x64\\debug\\test_cases.lib")
|
||||
|
||||
static TypeSmall trueSmall = &_small;
|
||||
static TypeBranch trueBranch = &_branch;
|
||||
static TypeRip_relative trueRip_Relative = &_rip_relative;
|
||||
static TypeAVX trueAVX = &_AVX;
|
||||
static TypeRDRAND trueRDRAND = &_RDRAND;
|
||||
static TypeLoop trueLoop = &_loop;
|
||||
static TypeTailRecursion trueTailRecursion = &_tail_recursion;
|
||||
static TypeSmall trueSmall = nullptr;
|
||||
static TypeBranch trueBranch = nullptr;
|
||||
static TypeRip_relative trueRip_Relative = nullptr;
|
||||
static TypeAVX trueAVX = nullptr;
|
||||
static TypeRDRAND trueRDRAND = nullptr;
|
||||
static TypeLoop trueLoop = nullptr;
|
||||
static TypeTailRecursion trueTailRecursion = nullptr;
|
||||
|
||||
AbstractHookEngine* g_PolyHook = new PolyHook();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user