Code reorganization only.

svn path=/branches/ros-csrss/; revision=58178
This commit is contained in:
Hermès Bélusca-Maïto 2013-01-15 00:10:01 +00:00
parent d3af9fbaf2
commit 91e34202c7

View file

@ -29,16 +29,17 @@
typedef struct _CONSOLE_SCREEN_BUFFER typedef struct _CONSOLE_SCREEN_BUFFER
{ {
Object_t Header; /* Object header */ Object_t Header; /* Object header */
BYTE *Buffer; /* pointer to screen buffer */ LIST_ENTRY ListEntry; /* Entry in console's list of buffers */
USHORT MaxX, MaxY; /* size of the entire scrollback buffer */
USHORT ShowX, ShowY; /* beginning offset for the actual display area */ 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 CurrentX; /* Current X cursor position */
ULONG CurrentY; /* Current Y cursor position */ ULONG CurrentY; /* Current Y cursor position */
WORD DefaultAttrib; /* default char attribute */ WORD DefaultAttrib; /* Default char attribute */
USHORT VirtualY; /* top row of buffer being displayed, reported to callers */ USHORT VirtualY; /* Top row of buffer being displayed, reported to callers */
CONSOLE_CURSOR_INFO CursorInfo; CONSOLE_CURSOR_INFO CursorInfo;
USHORT Mode; USHORT Mode;
LIST_ENTRY ListEntry; /* entry in console's list of buffers */
} CONSOLE_SCREEN_BUFFER, *PCONSOLE_SCREEN_BUFFER; } CONSOLE_SCREEN_BUFFER, *PCONSOLE_SCREEN_BUFFER;
typedef struct _CONSOLE typedef struct _CONSOLE