RDR-Classes/rage/tlsContext.hpp

26 lines
448 B
C++
Raw Normal View History

#pragma once
#if _WIN32
#include <intrin.h>
#endif
namespace rage
{
#pragma pack(push, 8)
class tlsContext
{
char pad[0x1700];
public:
bool m_RunningScript; // 0x1700
#if _WIN32
static tlsContext* Get()
{
constexpr std::uint32_t TlsIndex = 0x0;
return *reinterpret_cast<tlsContext**>(__readgsqword(0x58) + TlsIndex);
}
#endif
};
#pragma pack(pop)
static_assert(sizeof(rage::tlsContext) == 0x1701);
}