using System; using System.Runtime.InteropServices; namespace Apewer.Internals.Interop { /// [StructLayout(LayoutKind.Sequential)] 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; } }