Files
the-cycle/src/Prospect.Launcher/Invoke/Structs/ProcessInformation.cs
T

13 lines
289 B
C#

using System;
using System.Runtime.InteropServices;
namespace Prospect.Launcher.Invoke.Structs;
[StructLayout(LayoutKind.Sequential)]
internal struct ProcessInformation
{
public IntPtr hProcess;
public IntPtr hThread;
public uint dwProcessId;
public uint dwThreadId;
}