Add initial project files (excluding ignored content)
This commit is contained in:
15
external/safetyhook/include/safetyhook.hpp
vendored
Normal file
15
external/safetyhook/include/safetyhook.hpp
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include "safetyhook/os.hpp"
|
||||
#include "safetyhook/easy.hpp"
|
||||
#include "safetyhook/inline_hook.hpp"
|
||||
#include "safetyhook/mid_hook.hpp"
|
||||
#include "safetyhook/vmt_hook.hpp"
|
||||
|
||||
using SafetyHookContext = safetyhook::Context;
|
||||
using SafetyHookInline = safetyhook::InlineHook;
|
||||
using SafetyHookMid = safetyhook::MidHook;
|
||||
using SafetyInlineHook [[deprecated("Use SafetyHookInline instead.")]] = safetyhook::InlineHook;
|
||||
using SafetyMidHook [[deprecated("Use SafetyHookMid instead.")]] = safetyhook::MidHook;
|
||||
using SafetyHookVmt = safetyhook::VmtHook;
|
||||
using SafetyHookVm = safetyhook::VmHook;
|
||||
Reference in New Issue
Block a user