mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 18:40:54 +01:00
16 lines
382 B
C
16 lines
382 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace stubs
|
||
|
|
{
|
||
|
|
// Returns true if the module name is found in the hard block list.
|
||
|
|
bool IsDllBlocked(std::wstring_view dllName);
|
||
|
|
|
||
|
|
// Returns true if the module is a Skyrim Souls RE related DLL.
|
||
|
|
bool IsSoulsRE(std::wstring_view dllName);
|
||
|
|
|
||
|
|
// Global flag indicating whether Skyrim Souls RE is active.
|
||
|
|
bool g_IsSoulsREActive{};
|
||
|
|
} // namespace stubs
|