terminal/src/inc/VtIoModes.hpp
Dustin L. Howett ffaba38fd4
Remove the WinTelnetEngine (#6526)
Nobody was using it.

Discussed in #2661.
2020-06-17 16:29:49 +00:00

18 lines
394 B
C++

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
#pragma once
enum class VtIoMode
{
INVALID,
XTERM,
XTERM_256,
XTERM_ASCII
};
const wchar_t* const XTERM_STRING = L"xterm";
const wchar_t* const XTERM_256_STRING = L"xterm-256color";
const wchar_t* const XTERM_ASCII_STRING = L"xterm-ascii";
const wchar_t* const DEFAULT_STRING = L"";