This commit is contained in:
Mino 2020-04-14 18:13:47 +09:00
parent f6b1e44a00
commit 207c0bfb62
4 changed files with 82 additions and 92 deletions

View file

@ -9,6 +9,6 @@ namespace Dalamud.Bootstrap.OS.Windows.Raw
private const string Name = "ntdll";
[DllImport(Name, CallingConvention = CallingConvention.Winapi, SetLastError = true)]
public static extern NTSTATUS NtQueryInformationProcess(SafeProcessHandle processHandle, PROCESSINFOCLASS processInfoClass, void* processInformation, int processInformationLength, IntPtr* returnLength);
public static extern NTSTATUS NtQueryInformationProcess(IntPtr processHandle, PROCESSINFOCLASS processInfoClass, void* processInformation, int processInformationLength, IntPtr* returnLength);
}
}