source: mainline/uspace/lib/c/include/io/output.h@ cd1e3fc0

Last change on this file since cd1e3fc0 was d7f7a4a, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 4 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: 920 bytes
Line 
1/*
2 * SPDX-FileCopyrightText: 2011 Martin Decky
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7/** @addtogroup libc
8 * @{
9 */
10/** @file
11 */
12
13#ifndef _LIBC_IO_OUTPUT_H_
14#define _LIBC_IO_OUTPUT_H_
15
16#include <ipc/output.h>
17#include <io/chargrid.h>
18#include <io/console.h>
19
20extern errno_t output_yield(async_sess_t *);
21extern errno_t output_claim(async_sess_t *);
22extern errno_t output_get_dimensions(async_sess_t *, sysarg_t *, sysarg_t *);
23extern errno_t output_get_caps(async_sess_t *, console_caps_t *);
24
25extern frontbuf_handle_t output_frontbuf_create(async_sess_t *, chargrid_t *);
26
27extern errno_t output_cursor_update(async_sess_t *, frontbuf_handle_t);
28extern errno_t output_set_style(async_sess_t *, console_style_t);
29
30extern errno_t output_update(async_sess_t *, frontbuf_handle_t);
31extern errno_t output_damage(async_sess_t *, frontbuf_handle_t,
32 sysarg_t, sysarg_t, sysarg_t, sysarg_t);
33
34#endif
35
36/** @}
37 */
Note: See TracBrowser for help on using the repository browser.