nexusforever/Source/NexusForever.ClientConnector/Native/PROCESS_INFORMATION.cs
Rawaho a6abcc3cb8
Upgraded ClientConnector to .NET Core.
ClientConnector will now look for both x86 and x64 binaries.
2020-07-04 18:48:50 +12:00

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;
}
}