mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
14 lines
417 B
C
14 lines
417 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: subsys/csrss/win32csr/tuiconsole.h
|
|
* PURPOSE: Interface to text-mode consoles
|
|
*/
|
|
|
|
#include "api.h"
|
|
|
|
extern NTSTATUS FASTCALL TuiInitConsole(PCSRSS_CONSOLE Console);
|
|
extern PCSRSS_CONSOLE FASTCALL TuiGetFocusConsole(VOID);
|
|
extern BOOL FASTCALL TuiSwapConsole(int Next);
|
|
|
|
/* EOF */
|