mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
fc78a963d0
Renaming CSRSS_... structures into CONSOLE_... svn path=/branches/ros-csrss/; revision=58120
19 lines
511 B
C
19 lines
511 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS Console Server DLL
|
|
* FILE: win32ss/user/consrv/guiconsole.h
|
|
* PURPOSE: Interface to gui-mode consoles
|
|
* PROGRAMMERS:
|
|
*/
|
|
|
|
#include "conio.h"
|
|
|
|
#define CONGUI_MIN_WIDTH 10
|
|
#define CONGUI_MIN_HEIGHT 10
|
|
#define CONGUI_UPDATE_TIME 0
|
|
#define CONGUI_UPDATE_TIMER 1
|
|
|
|
NTSTATUS FASTCALL GuiInitConsole(PCONSOLE Console, BOOL Visible);
|
|
VOID FASTCALL GuiConsoleHandleScrollbarMenu(VOID);
|
|
|
|
/*EOF*/
|