mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
13 lines
381 B
C++
13 lines
381 B
C++
#pragma once
|
|
|
|
namespace xivfixes {
|
|
void prevent_devicechange_crashes(bool bApply);
|
|
void disable_game_openprocess_access_check(bool bApply);
|
|
void redirect_openprocess(bool bApply);
|
|
|
|
inline void apply_all(bool bApply) {
|
|
prevent_devicechange_crashes(bApply);
|
|
disable_game_openprocess_access_check(bApply);
|
|
redirect_openprocess(bApply);
|
|
}
|
|
}
|