Changeset 8d2dd7f2 in mainline for uspace/srv/hid
- Timestamp:
- 2017-05-13T19:03:14Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9c96634
- Parents:
- e48947e
- Location:
- uspace/srv/hid
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/compositor/compositor.c
re48947e r8d2dd7f2 33 33 */ 34 34 35 #include <sys/types.h> 35 #include <stddef.h> 36 #include <stdint.h> 36 37 #include <stdbool.h> 37 38 #include <errno.h> -
uspace/srv/hid/input/kbd_port.h
re48947e r8d2dd7f2 38 38 #define KBD_PORT_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 42 42 struct kbd_dev; -
uspace/srv/hid/input/layout.h
re48947e r8d2dd7f2 38 38 #define KBD_LAYOUT_H_ 39 39 40 #include <sys/types.h>41 40 #include <io/console.h> 42 41 -
uspace/srv/hid/input/mouse_port.h
re48947e r8d2dd7f2 38 38 #define MOUSE_PORT_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 42 42 struct mouse_dev; -
uspace/srv/hid/input/port/ski.c
re48947e r8d2dd7f2 37 37 38 38 #include <stdlib.h> 39 #include <s ys/types.h>39 #include <stdint.h> 40 40 #include <thread.h> 41 41 #include <stdbool.h> -
uspace/srv/hid/output/ctl/serial.c
re48947e r8d2dd7f2 35 35 */ 36 36 37 #include <sys/types.h>38 37 #include <errno.h> 39 38 #include <io/chargrid.h> -
uspace/srv/hid/output/output.c
re48947e r8d2dd7f2 27 27 */ 28 28 29 #include <s ys/types.h>29 #include <stddef.h> 30 30 #include <errno.h> 31 31 #include <malloc.h> -
uspace/srv/hid/output/output.h
re48947e r8d2dd7f2 30 30 #define OUTPUT_OUTPUT_H_ 31 31 32 #include <sys/types.h>33 32 #include <stdbool.h> 34 33 #include <loc.h> -
uspace/srv/hid/output/port/chardev.c
re48947e r8d2dd7f2 30 30 */ 31 31 32 #include <sys/types.h> 32 #include <stddef.h> 33 #include <stdint.h> 33 34 #include <char_dev_iface.h> 34 35 #include <stdio.h> -
uspace/srv/hid/output/port/kchar.c
re48947e r8d2dd7f2 31 31 */ 32 32 33 #include <s ys/types.h>33 #include <stdint.h> 34 34 #include <errno.h> 35 35 #include <str.h> -
uspace/srv/hid/output/port/niagara.c
re48947e r8d2dd7f2 32 32 */ 33 33 34 #include <s ys/types.h>34 #include <stdint.h> 35 35 #include <errno.h> 36 36 #include <sysinfo.h> -
uspace/srv/hid/output/port/ski.c
re48947e r8d2dd7f2 31 31 */ 32 32 33 #include <sys/types.h>34 33 #include <errno.h> 35 34 #include <sysinfo.h> -
uspace/srv/hid/output/proto/vt100.c
re48947e r8d2dd7f2 30 30 */ 31 31 32 #include <sys/types.h>33 32 #include <inttypes.h> 34 33 #include <errno.h> -
uspace/srv/hid/output/proto/vt100.h
re48947e r8d2dd7f2 33 33 #define OUTPUT_PROTO_VT100_H_ 34 34 35 #include <sys/types.h>36 35 #include <io/charfield.h> 37 36 -
uspace/srv/hid/s3c24xx_ts/s3c24xx_ts.h
re48947e r8d2dd7f2 38 38 #define S3C24XX_TS_H_ 39 39 40 #include <s ys/types.h>40 #include <stdint.h> 41 41 #include <async.h> 42 42
Note:
See TracChangeset
for help on using the changeset viewer.