mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Offer to restart game from VEH exception handler (#936)
This commit is contained in:
parent
98e421a227
commit
58ceb1dc87
16 changed files with 1279 additions and 616 deletions
|
|
@ -8,6 +8,9 @@ struct DalamudStartInfo {
|
|||
BeforeDalamudConstruct = 1 << 2,
|
||||
};
|
||||
friend void from_json(const nlohmann::json&, WaitMessageboxFlags&);
|
||||
friend WaitMessageboxFlags operator &(WaitMessageboxFlags a, WaitMessageboxFlags b) {
|
||||
return static_cast<WaitMessageboxFlags>(static_cast<int>(a) & static_cast<int>(b));
|
||||
}
|
||||
|
||||
enum class DotNetOpenProcessHookMode : int {
|
||||
ImportHooks = 0,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue