mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[CONSRV]
Code reorganization only. svn path=/branches/ros-csrss/; revision=58178
This commit is contained in:
parent
d3af9fbaf2
commit
91e34202c7
1 changed files with 7 additions and 6 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue