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
Line 
1/*
2 * SPDX-FileCopyrightText: 2021 Jiri Svoboda
3 * SPDX-FileCopyrightText: 2006 Josef Cejka
4 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 */
7
8/** @addtogroup libcipc
9 * @{
10 */
11/** @file
12 */
13
14#ifndef _LIBC_IPC_CONSOLE_H_
15#define _LIBC_IPC_CONSOLE_H_
16
17#include <ipc/vfs.h>
18
19typedef enum {
20 CONSOLE_GET_SIZE = VFS_OUT_LAST,
21 CONSOLE_GET_COLOR_CAP,
22 CONSOLE_GET_EVENT,
23 CONSOLE_GET_POS,
24 CONSOLE_SET_POS,
25 CONSOLE_CLEAR,
26 CONSOLE_SET_STYLE,
27 CONSOLE_SET_COLOR,
28 CONSOLE_SET_RGB_COLOR,
29 CONSOLE_SET_CURSOR_VISIBILITY,
30 CONSOLE_SET_CAPTION,
31 CONSOLE_MAP,
32 CONSOLE_UNMAP,
33 CONSOLE_UPDATE
34} console_request_t;
35
36#endif
37
38/** @}
39 */
Note: See TracBrowser for help on using the repository browser.