- Win32 console
Win32 console is a
plain text window forconsole application s within the system ofWindows API . A Win32 console has a screen buffer and an input buffer.Win32 consoles are typically used for applications that do not need to display images. Examples include
command line interface tools such ascommand line interpreter s (e.g., CMD.EXE,Windows PowerShell ,Korn shell ) ortext user interface applications such asfile manager s andtext editor s (e.g.Midnight Commander ,MS-DOS Editor ).Details
The input buffer is a queue where events are stored (from keyboard, mouse etc). The output buffer is a rectangular grid where characters are stored, together with their attributes. A console window may have several output buffers, only one of which is active (i.e. displayed) for a given moment.
The console window may be displayed as a normal window on the desktop, or may be switched to full screen to use the actual hardware
text mode . Unfortunately, the display mode is locked in background intensity mode, thus blinking does not work. Also, the underscore attribute is not available.Programs may access a Win32 console either via high-level functions (such as
ReadConsole
andWriteConsole
) or via low-level functions (e.g.ReadConsoleInput
andWriteConsoleOutput
). These high-level functions are more limited than a Win32GUI ; for instance it is not possible for a program to change thecolor palette , nor is it possible to modify thefont used by the console using these functions.Win32 console applications are often mistaken for
MS-DOS applications, especially onWindows 9x andWindows Me . However, a Win32 Console application is just a special form of a native Win32 application - it is not a 16-bit DOS application. 32-bit Windows can run MS-DOS programs through the use of the NT Virtual DOS Machine (NTVDM).In earlier versions of Windows, there was no native support for consoles. Since
Windows 3.1 and earlier was merely a graphical interface for MS-DOS, most text applications that ran on earlier Windows versions were actually MS-DOS applications running in "DOS boxes". To simplify the task of porting applications to Windows, early versions ofVisual C++ were supplied withQuickWin , a library that implemented basic console functionality inside a regular Window.Implementations
Windows 9x and Me
Windows 95/98/Me support is relatively poor compared to
Windows NT , because the console window runs in the system VM and so keyboard input to a Win32 console application had to be directed to it by conagent.exe running in a DOS VM that are also used for real DOS applications by hooking the keyboard interrupt.conagent.exe
then calls Vcond (which is aVxD ). Vcond then had to pass the keyboard input to the System VM, and then finally to the Win32 console application.Besides performance, another problem with this implementation is that drives that are local to a DOS VM are not visible to a Win32 console application. This can cause confusion.Under Windows 95/98/Me, the screen buffer mirrors the structure of
VGA text buffer, with two bytes per character cell: one byte for character code, one byte for attributes (the character must be in OEM character set, the attribute is with high-intensity background/no blinking). This speeds up operation considerably if the actual VGA text mode is used.Windows NT and CE based
The
Client/Server Runtime Subsystem is responsible for Win32 console windows on Windows NT based operating systems. [ [http://www.microsoft.com/technet/security/advisory/928604.mspx Microsoft Security Advisory (930181): Exploit Code Published Affecting Windows Client Server Run-Time Subsystem ] ]Under Windows NT and CE based versions of Windows, the screen buffer uses four bytes per character cell: two bytes for character code, two bytes for attributes. The character is then encoded as
Unicode (UTF-16 ). [UTF-16 uses surrogate pairs to extend 16-bit codes to the full Unicode range.] [cite web |url=http://msdn2.microsoft.com/en-us/library/ms904390.aspx |title=Working with Surrogate Pairs |publisher=Microsoft |date=2007 |accessdate=2007-11-19] For backward compatibility, the console APIs exist in two versions: Unicode and non-Unicode. The non-Unicode versions of APIs can usecode page switching to extend the range of displayed characters (but only ifTrueType fonts are used for the console window, thereby extending the range of codes available). EvenUTF-8 is available as "code page 65001".ee also
*
Cmd.exe
*Command line interface
*MS-DOS
*Shell (computing)
*System console
*Text-based (computing) Notes
External links
* [http://msdn2.microsoft.com/en-us/library/ms682087.aspx MSDN console API reference]
Wikimedia Foundation. 2010.