Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FLinkerLoad
Description
Recursively gathers the dependencies of a given export (the recursive chain of imports and their imports, and so on)
Recursively gathers the dependencies of a given export (the recursive chain of imports and their imports, and so on)
| Name | GatherExportDependencies |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/LinkerLoad.h |
| Include Path | #include "UObject/LinkerLoad.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/LinkerLoad.cpp |
void GatherExportDependencies
(
int32 ExportIndex,
TSet< FDependencyRef > & Dependencies,
bool bSkipLoadedObjects
)
Parameters
| Name | Remarks |
|---|---|
| ExportIndex | Index into the linker's ExportMap that we are checking dependencies |
| Dependencies | Set of all dependencies needed |
| bSkipLoadedObjects | Whether to skip already loaded objects when gathering dependencies |
| ExportIndex | Index into the linker's ExportMap that we are checking dependencies |
| Dependencies | Array of all dependencies needed |
| bSkipLoadedObjects | Whether to skip already loaded objects when gathering dependencies |