Choose your operating system:
Windows
macOS
Linux
Module |
|
Header |
/Engine/Source/Runtime/Core/Public/Modules/ModuleManager.h |
Include |
#include "Modules/ModuleManager.h" |
enum EModuleLoadResult
{
Success,
FileNotFound,
FileIncompatible,
CouldNotBeLoadedByOS,
FailedToInitialize,
}
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. |
Enumerates reasons for failed module loads.