mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-14 03:16:40 +10:00
46 lines
775 B
C#
46 lines
775 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace WPinternalsSDK
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
|
|
internal struct STARTUPINFO
|
|
{
|
|
public int cb;
|
|
|
|
public string lpReserved;
|
|
|
|
public string lpDesktop;
|
|
|
|
public string lpTitle;
|
|
|
|
public int dwX;
|
|
|
|
public int dwY;
|
|
|
|
public int dwXSize;
|
|
|
|
public int dwYSize;
|
|
|
|
public int dwXCountChars;
|
|
|
|
public int dwYCountChars;
|
|
|
|
public int dwFillAttribute;
|
|
|
|
public int dwFlags;
|
|
|
|
public short wShowWindow;
|
|
|
|
public short cbReserved2;
|
|
|
|
public IntPtr lpReserved2;
|
|
|
|
public IntPtr hStdInput;
|
|
|
|
public IntPtr hStdOutput;
|
|
|
|
public IntPtr hStdError;
|
|
}
|
|
}
|