Skip to content

Commit

Permalink
ci: maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 22, 2024
1 parent 469dc37 commit 981fd39
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 26 deletions.
16 changes: 8 additions & 8 deletions include/RE/RTTI.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ namespace RE
};

// members
RVA<TypeDescriptor> typeDescriptor; // 00
std::uint32_t numContainedBases; // 04
PMD pmd; // 08
REX::EnumSet<Attribute, std::uint32_t> attributes; // 14
RVA<TypeDescriptor> typeDescriptor; // 00
std::uint32_t numContainedBases; // 04
PMD pmd; // 08
REX::EnumSet<Attribute, std::uint32_t> attributes; // 14
};

static_assert(sizeof(BaseClassDescriptor) == 0x18);
Expand All @@ -94,10 +94,10 @@ namespace RE
};

// members
std::uint32_t signature; // 00
REX::EnumSet<Attribute, std::uint32_t> attributes; // 04
std::uint32_t numBaseClasses; // 08
RVA<BaseClassDescriptor> baseClassArray; // 0C
std::uint32_t signature; // 00
REX::EnumSet<Attribute, std::uint32_t> attributes; // 04
std::uint32_t numBaseClasses; // 08
RVA<BaseClassDescriptor> baseClassArray; // 0C
};

static_assert(sizeof(ClassHierarchyDescriptor) == 0x10);
Expand Down
36 changes: 18 additions & 18 deletions include/RE/S/Stack.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,24 +81,24 @@ namespace RE::BSScript
}

// members
IMemoryPagePolicy* policy; // 08
void* unk10; // 10 - something to do with guards, guardPolicy maybe?
IProfilePolicy* profilePolicy; // 18
void* unk20; // 20
char pages[0x40]; // 28 - BSTSmallArray<MemoryPageData, 3>
StackFrame* top; // 68
BSTSmartPointer<Internal::CodeTasklet> owningTasklet; // 70
BSTSmartPointer<IStackCallbackFunctor> callback; // 78
BSTSmartPointer<Object> objToUnbind; // 80
BSTSmartPointer<Stack> nextStack; // 88
Variable returnValue; // 90
std::uint64_t unk98; // A0
std::uint64_t unkA0; // A8
std::uint32_t frames; // B0
std::uint32_t stackID; // B4
State state; // B8
FreezeState freezeState; // BC
StackType stackType; // C0
IMemoryPagePolicy* policy; // 08
void* unk10; // 10 - something to do with guards, guardPolicy maybe?
IProfilePolicy* profilePolicy; // 18
void* unk20; // 20
char pages[0x40]; // 28 - BSTSmallArray<MemoryPageData, 3>
StackFrame* top; // 68
BSTSmartPointer<Internal::CodeTasklet> owningTasklet; // 70
BSTSmartPointer<IStackCallbackFunctor> callback; // 78
BSTSmartPointer<Object> objToUnbind; // 80
BSTSmartPointer<Stack> nextStack; // 88
Variable returnValue; // 90
std::uint64_t unk98; // A0
std::uint64_t unkA0; // A8
std::uint32_t frames; // B0
std::uint32_t stackID; // B4
State state; // B8
FreezeState freezeState; // BC
StackType stackType; // C0
};
static_assert(sizeof(Stack) == 0xC8);
}

0 comments on commit 981fd39

Please sign in to comment.