Changeset d8503fd in mainline for uspace/srv/hid/display/display.h
- Timestamp:
- 2023-01-09T21:14:04Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 46b02cb
- Parents:
- e04b72d6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/display.h
re04b72d6 rd8503fd 1 1 /* 2 * Copyright (c) 202 2Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 42 42 #include <gfx/coord.h> 43 43 #include <io/kbd_event.h> 44 #include "types/display/cfgclient.h" 44 45 #include "types/display/client.h" 45 46 #include "types/display/cursor.h" … … 63 64 extern void ds_display_add_wmclient(ds_display_t *, ds_wmclient_t *); 64 65 extern void ds_display_remove_wmclient(ds_wmclient_t *); 66 extern void ds_display_add_cfgclient(ds_display_t *, ds_cfgclient_t *); 67 extern void ds_display_remove_cfgclient(ds_cfgclient_t *); 65 68 extern ds_wmclient_t *ds_display_first_wmclient(ds_display_t *); 66 69 extern ds_wmclient_t *ds_display_next_wmclient(ds_wmclient_t *); … … 81 84 extern ds_seat_t *ds_display_first_seat(ds_display_t *); 82 85 extern ds_seat_t *ds_display_next_seat(ds_seat_t *); 86 extern ds_seat_t *ds_display_find_seat(ds_display_t *, ds_seat_id_t); 83 87 extern ds_seat_t *ds_display_seat_by_idev(ds_display_t *, ds_idev_id_t); 84 88 extern errno_t ds_display_add_ddev(ds_display_t *, ds_ddev_t *);
Note:
See TracChangeset
for help on using the changeset viewer.