mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-12 16:50:54 +01:00
15 lines
382 B
C++
15 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
|