UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
Memcpy.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#if (defined(__AUTORTFM) && __AUTORTFM)
6
7#include "AutoRTFMDefines.h"
8
9#include <stdlib.h>
10
11namespace AutoRTFM
12{
13
14class FContext;
15
16AUTORTFM_DISABLE void* MemcpyToNew(void* Dst, const void* Src, size_t Size, FContext* Context);
17AUTORTFM_DISABLE void* Memcpy(void* Dst, const void* Src, size_t Size, FContext* Context);
18AUTORTFM_DISABLE void* Memmove(void* Dst, const void* Src, size_t Size, FContext* Context);
19AUTORTFM_DISABLE void* Memset(void* Dst, int Value, size_t Size, FContext* Context);
20
21} // namespace AutoRTFM
22
23#endif // (defined(__AUTORTFM) && __AUTORTFM)
#define AUTORTFM_DISABLE
Definition AutoRTFMDefines.h:116
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
uint32 Size
Definition VulkanMemory.cpp:4034
Definition API.cpp:57