mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
* add LoadMethod to DalamudStartInfo * add to_wstring utility function * append full injector launch args for VEH * remove usage of std::chrono::zoned_time * fix injector arguments in crash handler restart * enable VEH on wine * remove dead wine detection code * write out tspack with std::fstream * fix off-by-one error in get_window_string() * remove usage of std::chrono when writing tspack * do not deadlock on crashing DalamudCrashHandler
17 lines
341 B
C#
17 lines
341 B
C#
namespace Dalamud.Common;
|
|
|
|
/// <summary>
|
|
/// Enum describing the method Dalamud has been loaded.
|
|
/// </summary>
|
|
public enum LoadMethod
|
|
{
|
|
/// <summary>
|
|
/// Load Dalamud by rewriting the games entrypoint.
|
|
/// </summary>
|
|
Entrypoint,
|
|
|
|
/// <summary>
|
|
/// Load Dalamud via DLL-injection.
|
|
/// </summary>
|
|
DllInject,
|
|
}
|