Files
Torch/Torch.Server/NativeMethods.cs
2017-03-30 15:24:39 -07:00

19 lines
392 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace Torch.Server
{
public class NativeMethods
{
[DllImport("kernel32")]
public static extern bool AllocConsole();
[DllImport("kernel32")]
public static extern bool FreeConsole();
}
}