UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
VVMHeapPageHeader.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#if WITH_VERSE_VM || defined(__INTELLISENSE__)
6
7#include "verse_heap_page_header_ue.h"
8#include "verse_heap_ue.h"
9
10namespace Verse
11{
12
13struct FHeapPageHeader final
14{
15 static FHeapPageHeader* Get(const void* Ptr)
16 {
17 return reinterpret_cast<FHeapPageHeader*>(verse_heap_get_page_header(reinterpret_cast<uintptr_t>(Ptr)));
18 }
19
20 void** LockClientData()
21 {
23 }
24
25 void UnlockClientData()
26 {
28 }
29};
30
31} // namespace Verse
32#endif // WITH_VERSE_VM
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
FORCEINLINE T * Get(const FObjectPtr &ObjectPtr)
Definition ObjectPtr.h:426
Definition Archive.h:36