[CONSRV]: More code cleaning.

svn path=/branches/condrv_restructure/; revision=65651
This commit is contained in:
Hermès Bélusca-Maïto 2014-12-14 21:18:40 +00:00
parent 715013f96b
commit 0187ba2a21
2 changed files with 3 additions and 5 deletions

View file

@ -738,7 +738,7 @@ ConSrvDeleteConsole(PCONSRV_CONSOLE Console)
/* Deinit the ConSrv terminal */ /* Deinit the ConSrv terminal */
// FIXME!! // FIXME!!
// ConSrvDeinitTerminal(&Terminal); // &ConSrvConsole->Console->TermIFace // ConSrvDeinitTerminal(&Terminal);
} }

View file

@ -108,8 +108,6 @@ struct _CONSOLE_SCREEN_BUFFER
// WORD ScreenDefaultAttrib; /* Default screen char attribute */ // WORD ScreenDefaultAttrib; /* Default screen char attribute */
// WORD PopupDefaultAttrib; /* Default popup char attribute */ // WORD PopupDefaultAttrib; /* Default popup char attribute */
USHORT Mode; /* Output buffer modes */ 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, INT (NTAPI *ShowMouseCursor)(IN OUT PTERMINAL This,
BOOL Show); BOOL Show);
#if 0 // Possible future front-end interface #if 0 // Possible future terminal interface
BOOL (NTAPI *GetTerminalProperty)(IN OUT PTERMINAL This, BOOL (NTAPI *GetTerminalProperty)(IN OUT PTERMINAL This,
ULONG Flag, ULONG Flag,
PVOID Info, PVOID Info,
@ -274,7 +272,7 @@ typedef struct _TERMINAL_VTBL
struct _TERMINAL struct _TERMINAL
{ {
PTERMINAL_VTBL Vtbl; /* Virtual table */ 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 */ PVOID Data; /* Private data */
}; };