Changeset d8503fd in mainline for uspace/srv/hid/display/types/display/seat.h
- Timestamp:
- 2023-01-09T21:14:04Z (2 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/types/display/seat.h
re04b72d6 rd8503fd 1 1 /* 2 * Copyright (c) 202 1Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 40 40 #include <gfx/coord.h> 41 41 42 typedef sysarg_t ds_seat_id_t; 43 42 44 /** Display server seat */ 43 45 typedef struct ds_seat { … … 46 48 /** Link to display->seats */ 47 49 link_t lseats; 50 /** Seat ID */ 51 ds_seat_id_t id; 52 /** Seat name */ 53 char *name; 48 54 /** Window this seat is focused on */ 49 55 struct ds_window *focus;
Note:
See TracChangeset
for help on using the changeset viewer.