CommonLibSSE (powerof3)
Loading...
Searching...
No Matches
BSThread.h
Go to the documentation of this file.
1#pragma once
2
3#include "REX/W32/BASE.h"
4
5namespace RE
6{
7 class BSThread
8 {
9 public:
10 inline static constexpr auto RTTI = RTTI_BSThread;
11 inline static constexpr auto VTABLE = VTABLE_BSThread;
12
13 virtual ~BSThread(); // 00
14
15 // add
16 virtual void Unk_01(void); // 01 - { return 0; }
17 virtual void Unk_02(void); // 02 - { return; }
18
19 // members
21 void* thread; // 30
22 void* ownerThread; // 38
23 std::uint32_t threadID; // 40
24 std::uint32_t ownerThreadID; // 44
25 bool initialized; // 48
26 std::uint8_t pad49; // 49
27 std::uint16_t pad4A; // 4A
28 std::uint32_t pad4C; // 4C
29 };
30 static_assert(sizeof(BSThread) == 0x50);
31}
Definition BSThread.h:8
virtual void Unk_02(void)
virtual void Unk_01(void)
std::uint32_t ownerThreadID
Definition BSThread.h:24
REX::W32::CRITICAL_SECTION lock
Definition BSThread.h:20
std::uint16_t pad4A
Definition BSThread.h:27
std::uint32_t threadID
Definition BSThread.h:23
virtual ~BSThread()
std::uint32_t pad4C
Definition BSThread.h:28
void * thread
Definition BSThread.h:21
void * ownerThread
Definition BSThread.h:22
static constexpr auto VTABLE
Definition BSThread.h:11
bool initialized
Definition BSThread.h:25
static constexpr auto RTTI
Definition BSThread.h:10
std::uint8_t pad49
Definition BSThread.h:26
Definition AbsorbEffect.h:6
constexpr std::array< REL::ID, 1 > VTABLE_BSThread
Definition Offsets_VTABLE.h:10551
constexpr REL::ID RTTI_BSThread(static_cast< std::uint64_t >(684803))
Definition BASE.h:138