package windowsconsole

import "github.com/dotcloud/docker/pkg/term/windows"

Package windowsconsole implements ANSI-aware input and output streams for use by the Docker Windows client. When asked for the set of standard streams (e.g., stdin, stdout, stderr), the code will create and return pseudo-streams that convert ANSI sequences to / from Windows Console API calls.

Deprecated: use github.com/moby/term/windows instead

Index

Variables

var (
	// GetHandleInfo returns file descriptor and bool indicating whether the file is a console.
	// Deprecated: use github.com/moby/term/windows.GetHandleInfo
	GetHandleInfo = windowsconsole.GetHandleInfo

	// IsConsole returns true if the given file descriptor is a Windows Console.
	// The code assumes that GetConsoleMode will return an error for file descriptors that are not a console.
	// Deprecated: use github.com/moby/term/windows.IsConsole
	IsConsole = windowsconsole.IsConsole

	// NewAnsiReader returns an io.ReadCloser that provides VT100 terminal emulation on top of a
	// Windows console input handle.
	// Deprecated: use github.com/moby/term/windows.NewAnsiReader
	NewAnsiReader = windowsconsole.NewAnsiReader

	// NewAnsiWriter returns an io.Writer that provides VT100 terminal emulation on top of a
	// Windows console output handle.
	// Deprecated: use github.com/moby/term/windows.NewAnsiWriter
	NewAnsiWriter = windowsconsole.NewAnsiWriter
)

Source Files

deprecated.go

Version
v20.10.23+incompatible
Published
Jan 18, 2023
Platform
windows/amd64
Imports
1 packages
Last checked
16 minutes ago

Tools for package owners.