mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:20:54 +01:00
18 lines
252 B
C++
18 lines
252 B
C++
#pragma once
|
|
|
|
namespace usvfs
|
|
{
|
|
// if our process was force fed usvfs
|
|
bool IsUSVFSActive();
|
|
|
|
class USVFSSentinel
|
|
{
|
|
public:
|
|
USVFSSentinel();
|
|
|
|
bool IsActive() { return m_usvfsHandle; }
|
|
|
|
private:
|
|
HMODULE m_usvfsHandle;
|
|
};
|
|
} // namespace usvfs
|