mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
14 lines
307 B
C#
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);
|
|
}
|
|
}
|