Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FPackageTrailerBuilder
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool BuildAndAppendTrailer
(
FLinkerSave* Linker, |
UObject/PackageTrailer.h | ||
bool BuildAndAppendTrailer
(
FLinkerSave* Linker, |
UObject/PackageTrailer.h |
BuildAndAppendTrailer(FLinkerSave *, FArchive &)
| Name | BuildAndAppendTrailer |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/PackageTrailer.h |
| Include Path | #include "UObject/PackageTrailer.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/PackageTrailer.cpp |
bool BuildAndAppendTrailer
(
FLinkerSave * Linker,
FArchive & DataArchive
)
True if the builder was created and appended successfully and false if any error was encountered
Parameters
| Name | Remarks |
|---|---|
| ExportsArchive | The linker associated with the package being written to disk. |
| DataArchive | The archive where the package data has been written to. This is where the FPackageTrailer will be written to |
BuildAndAppendTrailer(FLinkerSave *, FArchive &, int64 &)
| Name | BuildAndAppendTrailer |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/PackageTrailer.h |
| Include Path | #include "UObject/PackageTrailer.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/PackageTrailer.cpp |
bool BuildAndAppendTrailer
(
FLinkerSave * Linker,
FArchive & DataArchive,
int64 & InOutPackageFileOffset
)
True if the builder was created and appended successfully and false if any error was encountered
Parameters
| Name | Remarks |
|---|---|
| ExportsArchive | The linker associated with the package being written to disk. |
| DataArchive | The archive where the package data has been written to. This is where the FPackageTrailer will be written to |
| InOutPackageFileOffset | The offset at which the trailer is written in the package file. In this function version, DataArchive might be an archive for the entire package file, or it might be a separate archive solely for the package trailer. The caller must provide the initial value with the accumulated offset, and the function will increment this value by how many bytes are written to DataArchive. |