source: mainline/uspace/lib/c/include/ipc/output.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: 588 bytes
Line 
1/*
2 * SPDX-FileCopyrightText: 2012 Martin Decky
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7/** @addtogroup libcipc
8 * @{
9 */
10/** @file
11 */
12
13#ifndef _LIBC_IPC_OUTPUT_H_
14#define _LIBC_IPC_OUTPUT_H_
15
16#include <ipc/common.h>
17
18typedef sysarg_t frontbuf_handle_t;
19
20typedef enum {
21 OUTPUT_YIELD = IPC_FIRST_USER_METHOD,
22 OUTPUT_CLAIM,
23 OUTPUT_GET_DIMENSIONS,
24 OUTPUT_GET_CAPS,
25
26 OUTPUT_FRONTBUF_CREATE,
27 OUTPUT_FRONTBUF_DESTROY,
28
29 OUTPUT_CURSOR_UPDATE,
30 OUTPUT_SET_STYLE,
31 OUTPUT_SET_COLOR,
32 OUTPUT_SET_RGB_COLOR,
33
34 OUTPUT_UPDATE,
35 OUTPUT_DAMAGE
36} output_request_t;
37
38#endif
39
40/**
41 * @}
42 */
Note: See TracBrowser for help on using the repository browser.