Add files via upload

This commit is contained in:
Netch
2021-06-15 21:44:03 +08:00
commit 334c9ba7a7
83 changed files with 3785 additions and 0 deletions

13
Netch/NativeMethods.cs Normal file
View File

@@ -0,0 +1,13 @@
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);
}
}