source: mainline/uspace/lib/c/include/ipc/kbdev.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: 451 bytes
RevLine 
[9c0242b]1/*
[d7f7a4a]2 * SPDX-FileCopyrightText: 2011 Jiri Svoboda
[9c0242b]3 *
[d7f7a4a]4 * SPDX-License-Identifier: BSD-3-Clause
[9c0242b]5 */
6
7/** @addtogroup libcipc
8 * @{
9 */
10/** @file
11 */
12
[4805495]13#ifndef _LIBC_IPC_KBDEV_H_
14#define _LIBC_IPC_KBDEV_H_
[9c0242b]15
16#include <ipc/common.h>
17#include <ipc/dev_iface.h>
18
19typedef enum {
20 KBDEV_YIELD = DEV_FIRST_CUSTOM_METHOD,
21 KBDEV_RECLAIM,
22 KBDEV_SET_IND
23} kbdev_request_t;
24
25typedef enum {
26 KBDEV_EVENT = IPC_FIRST_USER_METHOD
27} kbdev_notif_t;
28
29#endif
30
31/**
32 * @}
33 */
Note: See TracBrowser for help on using the repository browser.