mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-12 17:10:54 +01:00
22 lines
297 B
C++
22 lines
297 B
C++
|
|
|
||
|
|
#include <Windows.h>
|
||
|
|
#include "usvfs/USVFS_Sentinel.h"
|
||
|
|
|
||
|
|
namespace usvfs
|
||
|
|
{
|
||
|
|
bool IsUSVFSActive()
|
||
|
|
{
|
||
|
|
return GetModuleHandleW(L"usvfs_x64.dll");
|
||
|
|
}
|
||
|
|
|
||
|
|
USVFSSentinel::USVFSSentinel()
|
||
|
|
{
|
||
|
|
m_usvfsHandle = GetModuleHandleW(L"usvfs_x64.dll");
|
||
|
|
|
||
|
|
if (m_usvfsHandle)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace usvfs
|