source: mainline/uspace/lib/c/include/ipc/console.h@ cb7be8f

Last change on this file since cb7be8f was d7f7a4a, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 3 years ago

Replace some license headers with SPDX identifier

Headers are replaced using tools/transorm-copyright.sh only
when it can be matched verbatim with the license header used
throughout most of the codebase.

  • Property mode set to 100644
File size: 621 bytes
RevLine 
[d3e6935]1/*
[d7f7a4a]2 * SPDX-FileCopyrightText: 2021 Jiri Svoboda
3 * SPDX-FileCopyrightText: 2006 Josef Cejka
[d3e6935]4 *
[d7f7a4a]5 * SPDX-License-Identifier: BSD-3-Clause
[d3e6935]6 */
7
8/** @addtogroup libcipc
[ca3ba3a]9 * @{
[d3e6935]10 */
11/** @file
12 */
13
[4805495]14#ifndef _LIBC_IPC_CONSOLE_H_
15#define _LIBC_IPC_CONSOLE_H_
[d3e6935]16
[ca3ba3a]17#include <ipc/vfs.h>
[9805cde]18
19typedef enum {
[4198f9c3]20 CONSOLE_GET_SIZE = VFS_OUT_LAST,
[50cfa6c]21 CONSOLE_GET_COLOR_CAP,
[ca3ba3a]22 CONSOLE_GET_EVENT,
[19528516]23 CONSOLE_GET_POS,
[5d94b16c]24 CONSOLE_SET_POS,
[ca3ba3a]25 CONSOLE_CLEAR,
[9805cde]26 CONSOLE_SET_STYLE,
27 CONSOLE_SET_COLOR,
28 CONSOLE_SET_RGB_COLOR,
[68a552f]29 CONSOLE_SET_CURSOR_VISIBILITY,
[b48e680f]30 CONSOLE_SET_CAPTION,
[68a552f]31 CONSOLE_MAP,
32 CONSOLE_UNMAP,
33 CONSOLE_UPDATE
[9805cde]34} console_request_t;
[d3e6935]35
36#endif
[ca3ba3a]37
[d3e6935]38/** @}
39 */
Note: See TracBrowser for help on using the repository browser.