nexusforever/Source/NexusForever.ClientConnector/Native/STARTUP_INFO.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

26 lines
679 B
C#

using System;
namespace NexusForever.ClientConnector.Native
{
public struct STARTUPINFO
{
public uint cb;
public string lpReserved;
public string lpDesktop;
public string lpTitle;
public uint dwX;
public uint dwY;
public uint dwXSize;
public uint dwYSize;
public uint dwXCountChars;
public uint dwYCountChars;
public uint dwFillAttribute;
public uint dwFlags;
public short wShowWindow;
public short cbReserved2;
public IntPtr lpReserved2;
public IntPtr hStdInput;
public IntPtr hStdOutput;
public IntPtr hStdError;
}
}