Files
the-cycle/src/Prospect.Launcher/Invoke/Structs/StartupInfo.cs
T
2021-10-25 05:40:20 +02:00

28 lines
757 B
C#

using System;
using System.Runtime.InteropServices;
namespace Prospect.Launcher.Invoke.Structs
{
[StructLayout(LayoutKind.Sequential)]
internal 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;
}
}