terminal/src/inc/VtIoModes.hpp
Dustin Howett d4d59fa339 Initial release of the Windows Terminal source code
This commit introduces all of the Windows Terminal and Console Host source,
under the MIT license.
2019-05-02 15:29:04 -07:00

20 lines
473 B
C++

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