Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/UObject
Description
Allows class to inject items into the linker tables of the package that is loading an export of this class, for example adding dynamically determined imports. Only objects with RF_HasDynamicImports currently invoke this.
| Name | InjectDynamicImportsFor |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/Object.h |
| Include Path | #include "UObject/Object.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/Obj.cpp |
static void InjectDynamicImportsFor
(
const class FLinkerLoad & Linker,
const struct FObjectExport & Export,
TArray < struct FDynamicImport > & OutDynamicImports
)
Parameters
| Name | Remarks |
|---|---|
| Linker | A reference to the linker used for loading the export |
| Export | The export being processed |
| OutDynamicImports | The dynamic imports to inject |