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