Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FLinker
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FString GetExportFullName
(
int32 ExportIndex, |
Return the full name of the UObject represented by the specified export. | UObject/Linker.h | |
FString GetExportFullName
(
FPackageIndex PackageIndex, |
Return the full name of the UObject represented by the specified package index | UObject/Linker.h |
GetExportFullName(int32, const TCHAR *, bool)
Description
Return the full name of the UObject represented by the specified export.
| Name | GetExportFullName |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/Linker.h |
| Include Path | #include "UObject/Linker.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/Linker.cpp |
FString GetExportFullName
(
int32 ExportIndex,
const TCHAR * FakeRoot,
bool bResolveForcedExports
)
the full name of the UObject represented by the resource at ExportIndex
Parameters
| Name | Remarks |
|---|---|
| ExportIndex | index into the ExportMap for the resource to get the name for |
| FakeRoot | Optional name to replace use as the root package of this object instead of the linker |
| bResolveForcedExports | if true, the package name part of the return value will be the export's original package, not the name of the package it's currently contained within. |
GetExportFullName(FPackageIndex, const TCHAR *, bool)
Description
Return the full name of the UObject represented by the specified package index
| Name | GetExportFullName |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/Linker.h |
| Include Path | #include "UObject/Linker.h" |
FString GetExportFullName
(
FPackageIndex PackageIndex,
const TCHAR * FakeRoot,
bool bResolveForcedExports
)
the full name of the UObject represented by the resource at PackageIndex
Parameters
| Name | Remarks |
|---|---|
| PackageIndex | package index for the resource to get the name for |
| FakeRoot | Optional name to replace use as the root package of this object instead of the linker |
| bResolveForcedExports | if true, the package name part of the return value will be the export's original package, not the name of the package it's currently contained within. |