Changeset d8503fd in mainline for uspace/srv/hid/display/display.h


Ignore:
Timestamp:
2023-01-09T21:14:04Z (15 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/display.h

    re04b72d6 rd8503fd  
    11/*
    2  * Copyright (c) 2022 Jiri Svoboda
     2 * Copyright (c) 2023 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    4242#include <gfx/coord.h>
    4343#include <io/kbd_event.h>
     44#include "types/display/cfgclient.h"
    4445#include "types/display/client.h"
    4546#include "types/display/cursor.h"
     
    6364extern void ds_display_add_wmclient(ds_display_t *, ds_wmclient_t *);
    6465extern void ds_display_remove_wmclient(ds_wmclient_t *);
     66extern void ds_display_add_cfgclient(ds_display_t *, ds_cfgclient_t *);
     67extern void ds_display_remove_cfgclient(ds_cfgclient_t *);
    6568extern ds_wmclient_t *ds_display_first_wmclient(ds_display_t *);
    6669extern ds_wmclient_t *ds_display_next_wmclient(ds_wmclient_t *);
     
    8184extern ds_seat_t *ds_display_first_seat(ds_display_t *);
    8285extern ds_seat_t *ds_display_next_seat(ds_seat_t *);
     86extern ds_seat_t *ds_display_find_seat(ds_display_t *, ds_seat_id_t);
    8387extern ds_seat_t *ds_display_seat_by_idev(ds_display_t *, ds_idev_id_t);
    8488extern errno_t ds_display_add_ddev(ds_display_t *, ds_ddev_t *);
Note: See TracChangeset for help on using the changeset viewer.