Files
netch/Netch/NativeMethods.cs
2021-06-15 21:44:03 +08:00

14 lines
307 B
C#

using System.Runtime.InteropServices;
namespace Netch
{
public static class NativeMethods
{
[DllImport("kernel32")]
public static extern bool AllocConsole();
[DllImport("kernel32")]
public static extern bool AttachConsole(uint dwProcessId);
}
}