terminal/src/inc/VtIoModes.hpp

18 lines
394 B
C++
Raw Permalink Normal View History

// 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"";