mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 04:13:35 +00:00
[CONSRV]
Code reorganization only. svn path=/branches/ros-csrss/; revision=58178
This commit is contained in:
@@ -29,16 +29,17 @@
|
||||
typedef struct _CONSOLE_SCREEN_BUFFER
|
||||
{
|
||||
Object_t Header; /* Object header */
|
||||
BYTE *Buffer; /* pointer to screen buffer */
|
||||
USHORT MaxX, MaxY; /* size of the entire scrollback buffer */
|
||||
USHORT ShowX, ShowY; /* beginning offset for the actual display area */
|
||||
LIST_ENTRY ListEntry; /* Entry in console's list of buffers */
|
||||
|
||||
BYTE *Buffer; /* Pointer to screen buffer */
|
||||
USHORT MaxX, MaxY; /* Size of the entire scrollback buffer */
|
||||
USHORT ShowX, ShowY; /* Beginning offset for the actual display area */
|
||||
ULONG CurrentX; /* Current X cursor position */
|
||||
ULONG CurrentY; /* Current Y cursor position */
|
||||
WORD DefaultAttrib; /* default char attribute */
|
||||
USHORT VirtualY; /* top row of buffer being displayed, reported to callers */
|
||||
WORD DefaultAttrib; /* Default char attribute */
|
||||
USHORT VirtualY; /* Top row of buffer being displayed, reported to callers */
|
||||
CONSOLE_CURSOR_INFO CursorInfo;
|
||||
USHORT Mode;
|
||||
LIST_ENTRY ListEntry; /* entry in console's list of buffers */
|
||||
} CONSOLE_SCREEN_BUFFER, *PCONSOLE_SCREEN_BUFFER;
|
||||
|
||||
typedef struct _CONSOLE
|
||||
|
||||
Reference in New Issue
Block a user