Changeset 6cef8d6a in mainline
- Timestamp:
- 2023-12-04T18:59:41Z (12 months ago)
- Branches:
- master, topic/simplify-dev-export
- Children:
- 10fc93c
- Parents:
- fa942bc
- Location:
- uspace
- Files:
-
- 2 added
- 11 edited
- 5 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/hid/adb-kbd/meson.build
rfa942bc r6cef8d6a 27 27 # 28 28 29 deps = [ 'input' ] 29 30 src = files( 30 31 'main.c', -
uspace/drv/hid/adb-mouse/meson.build
rfa942bc r6cef8d6a 27 27 # 28 28 29 deps = [ 'input' ] 29 30 src = files('main.c', 'adb-mouse.c') -
uspace/drv/hid/atkbd/meson.build
rfa942bc r6cef8d6a 27 27 # 28 28 29 deps = [ 'input' ] 29 30 src = files('main.c', 'atkbd.c') -
uspace/drv/hid/ps2mouse/meson.build
rfa942bc r6cef8d6a 27 27 # 28 28 29 deps = [ 'input' ] 29 30 src = files('main.c', 'ps2mouse.c') -
uspace/drv/hid/usbhid/meson.build
rfa942bc r6cef8d6a 27 27 # 28 28 29 deps = [ 'usbhid', 'usbdev', 'usb' ]29 deps = [ 'usbhid', 'usbdev', 'usb', 'input' ] 30 30 includes += [ include_directories('.') ] 31 31 src = files( -
uspace/drv/hid/xtkbd/meson.build
rfa942bc r6cef8d6a 27 27 # 28 28 29 deps = [ 'input' ] 29 30 src = files('main.c', 'xtkbd.c') -
uspace/lib/console/meson.build
rfa942bc r6cef8d6a 27 27 # 28 28 29 deps = [ 'input' ] 29 30 src = files( 30 31 'src/con_srv.c', -
uspace/lib/display/meson.build
rfa942bc r6cef8d6a 27 27 # 28 28 29 deps = [ 'gfx', 'ipcgfx' ]29 deps = [ 'gfx', 'ipcgfx', 'input' ] 30 30 src = files( 31 31 'src/display.c', -
uspace/lib/input/include/io/kbd_event.h
rfa942bc r6cef8d6a 27 27 */ 28 28 29 /** @addtogroup lib c29 /** @addtogroup libinput 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIB C_IO_KBD_EVENT_H_36 #define _LIB C_IO_KBD_EVENT_H_35 #ifndef _LIBINPUT_IO_KBD_EVENT_H_ 36 #define _LIBINPUT_IO_KBD_EVENT_H_ 37 37 38 38 #include <adt/list.h> -
uspace/lib/input/include/io/keycode.h
rfa942bc r6cef8d6a 27 27 */ 28 28 29 /** @addtogroup lib c29 /** @addtogroup libinput 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIB C_IO_KEYCODE_H_36 #define _LIB C_IO_KEYCODE_H_35 #ifndef _LIBINPUT_IO_KEYCODE_H_ 36 #define _LIBINPUT_IO_KEYCODE_H_ 37 37 38 38 /** Keycode definitions. -
uspace/lib/input/include/io/pos_event.h
rfa942bc r6cef8d6a 28 28 */ 29 29 30 /** @addtogroup lib c30 /** @addtogroup libinput 31 31 * @{ 32 32 */ … … 34 34 */ 35 35 36 #ifndef _LIB C_IO_POS_EVENT_H_37 #define _LIB C_IO_POS_EVENT_H_36 #ifndef _LIBINPUT_IO_POS_EVENT_H_ 37 #define _LIBINPUT_IO_POS_EVENT_H_ 38 38 39 39 #include <types/common.h> -
uspace/lib/input/include/ipc/kbdev.h
rfa942bc r6cef8d6a 1 1 /* 2 * Copyright (c) 20 11Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup lib cipc29 /** @addtogroup libinput 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIB C_IPC_KBDEV_H_36 #define _LIB C_IPC_KBDEV_H_35 #ifndef _LIBINPUT_IPC_KBDEV_H_ 36 #define _LIBINPUT_IPC_KBDEV_H_ 37 37 38 38 #include <ipc/common.h> -
uspace/lib/input/include/ipc/mouseev.h
rfa942bc r6cef8d6a 1 1 /* 2 * Copyright (c) 20 09Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup lib c29 /** @addtogroup libinput 30 30 * @brief 31 31 * @{ … … 34 34 */ 35 35 36 #ifndef _LIB C_IPC_MOUSEEV_H_37 #define _LIB C_IPC_MOUSEEV_H_36 #ifndef _LIBINPUT_IPC_MOUSEEV_H_ 37 #define _LIBINPUT_IPC_MOUSEEV_H_ 38 38 39 39 #include <ipc/common.h> -
uspace/lib/meson.build
rfa942bc r6cef8d6a 53 53 'inet', 54 54 55 'input', 55 56 'console', 56 57 'device', … … 71 72 'gfx', 72 73 'http', 73 'input',74 74 'ipctest', 75 75 'label', -
uspace/srv/hid/isdv4_tablet/meson.build
rfa942bc r6cef8d6a 27 27 # 28 28 29 deps = [ 'drv' ]29 deps = [ 'drv', 'input' ] 30 30 src = files('main.c', 'isdv4.c') -
uspace/srv/hid/s3c24xx_ts/meson.build
rfa942bc r6cef8d6a 27 27 # 28 28 29 deps = [ 'input' ] 29 30 src = files('s3c24xx_ts.c')
Note:
See TracChangeset
for help on using the changeset viewer.