mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:45:41 +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
|
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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue