mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
12 lines
246 B
C#
12 lines
246 B
C#
using System;
|
|
|
|
namespace NexusForever.ClientConnector.Native
|
|
{
|
|
public struct PROCESS_INFORMATION
|
|
{
|
|
public IntPtr hProcess;
|
|
public IntPtr hThread;
|
|
public uint dwProcessId;
|
|
public uint dwThreadId;
|
|
}
|
|
}
|