94 lines
2.8 KiB
C
94 lines
2.8 KiB
C
/*
|
|
* Console driver ioctls
|
|
*
|
|
* Copyright 2020 Jacek Caban for CodeWeavers
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef _INC_CONDRV
|
|
#define _INC_CONDRV
|
|
|
|
#include "winioctl.h"
|
|
|
|
/* console input ioctls */
|
|
#define IOCTL_CONDRV_READ_INPUT CTL_CODE(FILE_DEVICE_CONSOLE, 10, METHOD_BUFFERED, FILE_READ_ACCESS)
|
|
#define IOCTL_CONDRV_WRITE_INPUT CTL_CODE(FILE_DEVICE_CONSOLE, 11, METHOD_BUFFERED, FILE_WRITE_PROPERTIES)
|
|
#define IOCTL_CONDRV_PEEK CTL_CODE(FILE_DEVICE_CONSOLE, 12, METHOD_BUFFERED, FILE_READ_ACCESS)
|
|
#define IOCTL_CONDRV_GET_INPUT_INFO CTL_CODE(FILE_DEVICE_CONSOLE, 13, METHOD_BUFFERED, FILE_READ_PROPERTIES)
|
|
|
|
/* console renderer ioctls */
|
|
#define IOCTL_CONDRV_GET_RENDERER_EVENTS CTL_CODE(FILE_DEVICE_CONSOLE, 70, METHOD_BUFFERED, FILE_READ_PROPERTIES)
|
|
|
|
/* IOCTL_CONDRV_GET_INPUT_INFO result */
|
|
struct condrv_input_info
|
|
{
|
|
unsigned int history_mode; /* whether we duplicate lines in history */
|
|
unsigned int history_size; /* number of lines in history */
|
|
unsigned int edition_mode; /* index to the edition mode flavors */
|
|
unsigned int input_count; /* number of available input records */
|
|
};
|
|
|
|
/* IOCTL_CONDRV_GET_RENDERER_EVENTS result */
|
|
struct condrv_renderer_event
|
|
{
|
|
short event;
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
short top;
|
|
short bottom;
|
|
} update;
|
|
struct
|
|
{
|
|
short width;
|
|
short height;
|
|
} resize;
|
|
struct
|
|
{
|
|
short x;
|
|
short y;
|
|
} cursor_pos;
|
|
struct
|
|
{
|
|
short visible;
|
|
short size;
|
|
} cursor_geom;
|
|
struct
|
|
{
|
|
short left;
|
|
short top;
|
|
short width;
|
|
short height;
|
|
} display;
|
|
} u;
|
|
};
|
|
|
|
enum condrv_renderer_event_type
|
|
{
|
|
CONSOLE_RENDERER_NONE_EVENT,
|
|
CONSOLE_RENDERER_TITLE_EVENT,
|
|
CONSOLE_RENDERER_ACTIVE_SB_EVENT,
|
|
CONSOLE_RENDERER_SB_RESIZE_EVENT,
|
|
CONSOLE_RENDERER_UPDATE_EVENT,
|
|
CONSOLE_RENDERER_CURSOR_POS_EVENT,
|
|
CONSOLE_RENDERER_CURSOR_GEOM_EVENT,
|
|
CONSOLE_RENDERER_DISPLAY_EVENT,
|
|
CONSOLE_RENDERER_EXIT_EVENT,
|
|
};
|
|
|
|
#endif /* _INC_CONDRV */
|