Ignore:
Timestamp:
2023-01-09T21:14:04Z (16 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
46b02cb
Parents:
e04b72d6
Message:

Display configuration utility and server support

Currently we can only create, list and delete seats using the
'disp' utility (but no way to assign devices).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/display/types/display/seat.h

    re04b72d6 rd8503fd  
    11/*
    2  * Copyright (c) 2021 Jiri Svoboda
     2 * Copyright (c) 2023 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    4040#include <gfx/coord.h>
    4141
     42typedef sysarg_t ds_seat_id_t;
     43
    4244/** Display server seat */
    4345typedef struct ds_seat {
     
    4648        /** Link to display->seats */
    4749        link_t lseats;
     50        /** Seat ID */
     51        ds_seat_id_t id;
     52        /** Seat name */
     53        char *name;
    4854        /** Window this seat is focused on */
    4955        struct ds_window *focus;
Note: See TracChangeset for help on using the changeset viewer.