Changeset fa942bc in mainline
- Timestamp:
- 2023-12-04T18:00:25Z (12 months ago)
- Branches:
- master, topic/simplify-dev-export
- Children:
- 6cef8d6a
- Parents:
- 0d275e1
- Location:
- uspace
- Files:
-
- 5 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/meson.build
r0d275e1 rfa942bc 103 103 'generic/imath.c', 104 104 'generic/io/asprintf.c', 105 'generic/io/input.c',106 105 'generic/io/io.c', 107 106 'generic/io/chargrid.c', -
uspace/lib/input/include/io/input.h
r0d275e1 rfa942bc 1 1 /* 2 * Copyright (c) 202 2Jiri 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 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef _LIB C_IO_INPUT_H_36 #define _LIB C_IO_INPUT_H_35 #ifndef _LIBINPUT_INPUT_H_ 36 #define _LIBINPUT_INPUT_H_ 37 37 38 38 #include <async.h> -
uspace/lib/input/include/ipc/input.h
r0d275e1 rfa942bc 1 1 /* 2 * Copyright (c) 202 1Jiri 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_INPUT_H_36 #define _LIB C_IPC_INPUT_H_35 #ifndef _LIBINPUT_IPC_INPUT_H_ 36 #define _LIBINPUT_IPC_INPUT_H_ 37 37 38 38 #include <ipc/common.h> -
uspace/lib/input/src/input.c
r0d275e1 rfa942bc 1 1 /* 2 * Copyright (c) 202 2Jiri 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 * @{ 31 31 */ -
uspace/lib/meson.build
r0d275e1 rfa942bc 71 71 'gfx', 72 72 'http', 73 'input', 73 74 'ipctest', 74 75 'label', -
uspace/srv/hid/console/meson.build
r0d275e1 rfa942bc 28 28 # 29 29 30 deps = [ 'console', ' output' ]30 deps = [ 'console', 'input', 'output' ] 31 31 src = files('console.c') -
uspace/srv/hid/display/meson.build
r0d275e1 rfa942bc 27 27 # 28 28 29 deps = [ 'ipcgfx', 'memgfx', 'display', 'ddev', 'dispcfg', 'wndmgt' ]29 deps = [ 'ipcgfx', 'memgfx', 'display', 'ddev', 'dispcfg', 'wndmgt', 'input' ] 30 30 31 31 src = files( -
uspace/srv/hid/input/meson.build
r0d275e1 rfa942bc 28 28 # 29 29 30 deps = [ 'drv', 'console' ]30 deps = [ 'drv', 'console', 'input' ] 31 31 src = files( 32 32 'layout/cz.c',
Note:
See TracChangeset
for help on using the changeset viewer.