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