mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-17 05:17:42 +01:00
WIP launch
This commit is contained in:
parent
9965dc313a
commit
2c2db8e779
5 changed files with 47 additions and 1 deletions
13
Dalamud.Bootstrap/OS/Windows/Raw/Advapi32.cs
Normal file
13
Dalamud.Bootstrap/OS/Windows/Raw/Advapi32.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Dalamud.Bootstrap.OS.Windows.Raw
|
||||
{
|
||||
internal static unsafe class Advapi32
|
||||
{
|
||||
private const string Name = "Advapi32";
|
||||
|
||||
[DllImport(Name, CallingConvention = CallingConvention.Winapi, SetLastError = true)]
|
||||
[return: MarshalAs(UnmanagedType.Bool)]
|
||||
public static extern bool InitializeSecurityDescriptor(out SECURITY_DESCRIPTOR pSecurityDescriptor, uint revision);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue