Initial commit

This commit is contained in:
Tigger Kindel
2023-08-11 07:35:15 -06:00
committed by Tig
parent 01c6350b67
commit dd75d4ea9f
3 changed files with 3 additions and 6 deletions

View File

@@ -1,12 +1,8 @@
//
// NetDriver.cs: The System.Console-based .NET driver, works on Windows and Unix, but is not particularly efficient.
//
// Authors:
// Miguel de Icaza (miguel@gnome.org)
//
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Runtime.InteropServices;
using System.Threading;
@@ -14,7 +10,7 @@ using System.Threading.Tasks;
using System.Text;
namespace Terminal.Gui;
internal class NetWinVTConsole {
class NetWinVTConsole {
IntPtr _inputHandle, _outputHandle, _errorHandle;
uint _originalInputConsoleMode, _originalOutputConsoleMode, _originalErrorConsoleMode;