F4MP/tiltedcode/Code/immersive_launcher/stubs/DllBlocklist.h
Jous99 37b16f1547 code upload
codigo original de f4mp y tilted para referencias
2026-01-06 18:45:00 +01:00

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