mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[CONSRV]: More code cleaning.
svn path=/branches/condrv_restructure/; revision=65651
This commit is contained in:
parent
715013f96b
commit
0187ba2a21
2 changed files with 3 additions and 5 deletions
|
@ -738,7 +738,7 @@ ConSrvDeleteConsole(PCONSRV_CONSOLE Console)
|
|||
|
||||
/* Deinit the ConSrv terminal */
|
||||
// FIXME!!
|
||||
// ConSrvDeinitTerminal(&Terminal); // &ConSrvConsole->Console->TermIFace
|
||||
// ConSrvDeinitTerminal(&Terminal);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -108,8 +108,6 @@ struct _CONSOLE_SCREEN_BUFFER
|
|||
// WORD ScreenDefaultAttrib; /* Default screen char attribute */
|
||||
// WORD PopupDefaultAttrib; /* Default popup char attribute */
|
||||
USHORT Mode; /* Output buffer modes */
|
||||
|
||||
// PVOID Data; /* Private data for the frontend to use */
|
||||
};
|
||||
|
||||
|
||||
|
@ -259,7 +257,7 @@ typedef struct _TERMINAL_VTBL
|
|||
INT (NTAPI *ShowMouseCursor)(IN OUT PTERMINAL This,
|
||||
BOOL Show);
|
||||
|
||||
#if 0 // Possible future front-end interface
|
||||
#if 0 // Possible future terminal interface
|
||||
BOOL (NTAPI *GetTerminalProperty)(IN OUT PTERMINAL This,
|
||||
ULONG Flag,
|
||||
PVOID Info,
|
||||
|
@ -274,7 +272,7 @@ typedef struct _TERMINAL_VTBL
|
|||
struct _TERMINAL
|
||||
{
|
||||
PTERMINAL_VTBL Vtbl; /* Virtual table */
|
||||
struct _CONSOLE* Console; /* Console to which the frontend is attached to */
|
||||
struct _CONSOLE* Console; /* Console to which the terminal is attached to */
|
||||
PVOID Data; /* Private data */
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue