source: mainline/uspace/lib/c/include/ipc/input.h@ 9bfa8c8

Last change on this file since 9bfa8c8 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: 525 bytes
RevLine 
[b0b5628]1/*
[d7f7a4a]2 * SPDX-FileCopyrightText: 2021 Jiri Svoboda
[b0b5628]3 *
[d7f7a4a]4 * SPDX-License-Identifier: BSD-3-Clause
[b0b5628]5 */
6
[5f88293]7/** @addtogroup libcipc
[b0b5628]8 * @{
[5f88293]9 */
[b0b5628]10/** @file
11 */
12
[4805495]13#ifndef _LIBC_IPC_INPUT_H_
14#define _LIBC_IPC_INPUT_H_
[5f88293]15
16#include <ipc/common.h>
[b0b5628]17
[5f88293]18typedef enum {
[593e023]19 INPUT_ACTIVATE = IPC_FIRST_USER_METHOD
[5f88293]20} input_request_t;
[9be360ee]21
[5f88293]22typedef enum {
[593e023]23 INPUT_EVENT_ACTIVE = IPC_FIRST_USER_METHOD,
24 INPUT_EVENT_DEACTIVE,
25 INPUT_EVENT_KEY,
[854eddd6]26 INPUT_EVENT_MOVE,
[8a99c7e]27 INPUT_EVENT_ABS_MOVE,
[8edec53]28 INPUT_EVENT_BUTTON,
29 INPUT_EVENT_DCLICK
[5f88293]30} input_notif_t;
[b0b5628]31
32#endif
33
34/**
35 * @}
[5f88293]36 */
Note: See TracBrowser for help on using the repository browser.