mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 13:01:40 +00:00
83c238e490
- Simplify screen-buffers initialization. - Get rid of this CONSOLE_SCREEN_BUFFER_VTBL virtual table. - Move ConsoleInput to a proper header.
23 lines
599 B
C
23 lines
599 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS Console Server DLL
|
|
* FILE: win32ss/user/winsrv/consrv/coninput.h
|
|
* PURPOSE: Console Input functions
|
|
* PROGRAMMERS: Jeffrey Morlan
|
|
* Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
typedef struct ConsoleInput_t
|
|
{
|
|
LIST_ENTRY ListEntry;
|
|
INPUT_RECORD InputEvent;
|
|
} ConsoleInput;
|
|
|
|
|
|
NTSTATUS NTAPI
|
|
ConDrvInitInputBuffer(IN PCONSOLE Console,
|
|
IN ULONG InputBufferSize);
|
|
VOID NTAPI
|
|
ConDrvDeinitInputBuffer(IN PCONSOLE Console);
|