Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FLinkerLoad
Description
Gives external code the ability to create FLinkerPlaceholderBase objects in place of loads that may violate the LOAD_DeferDependencyLoads state. This will only produce a placeholder if LOAD_DeferDependencyLoads is set for this linker.
NOTE: For now, this will only produce UClass placeholders, as that is the only type we've identified needing.
| Name | RequestPlaceholderValue |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/LinkerLoad.h |
| Include Path | #include "UObject/LinkerLoad.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/Blueprint/BlueprintSupport.cpp |
UObject * RequestPlaceholderValue
(
const FProperty * Property,
const UClass * ObjectType,
const TCHAR * ObjectPath
)
A FLinkerPlaceholderBaseUObject that can be used in place of the import dependency.
Parameters
| Name | Remarks |
|---|---|
| Property | The property for which you want to defer loading the value. |
| ObjectType | The expected type of the object you want to defer loading of. |
| ObjectPath | The full object/package path for the expected object. |