using System; using System.Runtime.InteropServices; namespace NitroxModel.Platforms.OS.Windows.Internal { [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)] public struct StartupInfo { public int 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; } }