20 lines
544 B
C++
20 lines
544 B
C++
#pragma once
|
|
#include <Windows.h>
|
|
#include <MinHook.h>
|
|
|
|
#pragma warning(push, 0)
|
|
#include "imgui/imgui.h"
|
|
#include "imgui/imgui_impl_win32.h"
|
|
#include "imgui/imgui_impl_dx11.h"
|
|
#pragma warning(pop)
|
|
|
|
bool HookDX11();
|
|
|
|
void CreateHooks();
|
|
bool InitializeHooks();
|
|
void DisableHooks();
|
|
|
|
void hDebug_Log(app::Object* message, MethodInfo* method);
|
|
void hDebug_LogError(app::Object* message, MethodInfo* method);
|
|
void hDebug_LogException(app::Exception* exception, MethodInfo* method);
|
|
void hDebug_LogWarning(app::Object* message, MethodInfo* method); |