Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Modules
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Modules/ModuleManager.h |
| Include | #include "Modules/ModuleManager.h" |
Syntax
enum EModuleLoadResult
{
Success,
FileNotFound,
FileIncompatible,
CouldNotBeLoadedByOS,
FailedToInitialize,
}
Values
| Name | Description |
|---|---|
| Success | Module loaded successfully. |
| FileNotFound | The specified module file could not be found. |
| FileIncompatible | The specified module file is incompatible with the module system. |
| CouldNotBeLoadedByOS | The operating system failed to load the module file. |
| FailedToInitialize | Module initialization failed. |
Remarks
Enumerates reasons for failed module loads.