mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
* Move AntiDebug to xivfixes * Update BootEnabledGameFixes * Check BootEnabledGameFixes * Apply suggestions from code review Co-authored-by: KazWolfe <KazWolfe@users.noreply.github.com> --------- Co-authored-by: KazWolfe <KazWolfe@users.noreply.github.com>
14 lines
456 B
C++
14 lines
456 B
C++
#pragma once
|
|
|
|
namespace xivfixes {
|
|
void unhook_dll(bool bApply);
|
|
void prevent_devicechange_crashes(bool bApply);
|
|
void disable_game_openprocess_access_check(bool bApply);
|
|
void redirect_openprocess(bool bApply);
|
|
void backup_userdata_save(bool bApply);
|
|
void prevent_icmphandle_crashes(bool bApply);
|
|
void symbol_load_patches(bool bApply);
|
|
void disable_game_debugging_protection(bool bApply);
|
|
|
|
void apply_all(bool bApply);
|
|
}
|