mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-29 00:24:13 +08:00
35 lines
949 B
C++
35 lines
949 B
C++
/**
|
|
veh_hook Vectored Exception Handler hooking library
|
|
Version: 24-March-2008
|
|
**/
|
|
|
|
#ifndef LIST_T_H_INCLUDED
|
|
#define LIST_T_H_INCLUDED
|
|
#include <windows.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <functional>
|
|
// VEH Hooking types
|
|
#define VEH_HK_INT3 0
|
|
#define VEH_HK_MEM 1
|
|
#define VEH_HK_HW 2
|
|
// -
|
|
|
|
#define OPCODE_INT3 "\xCC"
|
|
|
|
// typedef void (*pfvoid)();
|
|
// typedef void (*newFuncType)(PCONTEXT);
|
|
using newFuncType = std::function<bool(PCONTEXT)>;
|
|
|
|
// VEH hook interface functions for creating and removing hooks.
|
|
bool add_veh_hook(void *origFunc, newFuncType newFunc, DWORD hook_type = VEH_HK_INT3);
|
|
bool remove_veh_hook(void *origFunc);
|
|
|
|
// The VEH dispathing function is called by Windows every time an exception is encountered.
|
|
// the function dispatches calls to the correct inctercept function.
|
|
LONG CALLBACK veh_dispatch(PEXCEPTION_POINTERS ExceptionInfo);
|
|
|
|
// Functions used internally by the library.
|
|
|
|
#endif // LIST_T_H_INCLUDED
|