mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-18 22:07:44 +01:00
WIP launch
This commit is contained in:
parent
9965dc313a
commit
2c2db8e779
5 changed files with 47 additions and 1 deletions
|
|
@ -48,4 +48,22 @@ namespace Dalamud.Bootstrap.OS.Windows.Raw
|
|||
EXTENDED_STARTUPINFO_PRESENT = 0x00080000,
|
||||
INHERIT_PARENT_AFFINITY = 0x00010000,
|
||||
}
|
||||
|
||||
internal enum SECURITY_DESCRIPTOR_CONTROL : ushort
|
||||
{
|
||||
SE_DACL_AUTO_INHERIT_REQ = 0x0100,
|
||||
SE_DACL_AUTO_INHERITED = 0x0400,
|
||||
SE_DACL_DEFAULTED = 0x0008,
|
||||
SE_DACL_PRESENT = 0x0004,
|
||||
SE_DACL_PROTECTED = 0x1000,
|
||||
SE_GROUP_DEFAULTED = 0x0002,
|
||||
SE_OWNER_DEFAULTED = 0x0001,
|
||||
SE_RM_CONTROL_VALID = 0x4000,
|
||||
SE_SACL_AUTO_INHERIT_REQ = 0x0200,
|
||||
SE_SACL_AUTO_INHERITED = 0x0800,
|
||||
SE_SACL_DEFAULTED = 0x0008,
|
||||
SE_SACL_PRESENT = 0x0010,
|
||||
SE_SACL_PROTECTED = 0x2000,
|
||||
SE_SELF_RELATIVE = 0x8000,
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue