Ignore:
File:
1 edited

Legend:

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

    r9e84d2c ra0d4afe  
    11/*
    2  * Copyright (c) 2021 Jiri Svoboda
     2 * Copyright (c) 2023 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    4646#include "types/display/window.h"
    4747
    48 extern errno_t ds_seat_create(ds_display_t *, ds_seat_t **);
     48extern errno_t ds_seat_create(ds_display_t *, const char *, ds_seat_t **);
    4949extern void ds_seat_destroy(ds_seat_t *);
    5050extern void ds_seat_set_focus(ds_seat_t *, ds_window_t *);
    5151extern void ds_seat_set_popup(ds_seat_t *, ds_window_t *);
    5252extern void ds_seat_evac_wnd_refs(ds_seat_t *, ds_window_t *);
     53extern void ds_seat_unfocus_wnd(ds_seat_t *, ds_window_t *);
    5354extern void ds_seat_switch_focus(ds_seat_t *);
    5455extern errno_t ds_seat_post_kbd_event(ds_seat_t *, kbd_event_t *);
     
    5758extern void ds_seat_set_wm_cursor(ds_seat_t *, ds_cursor_t *);
    5859extern errno_t ds_seat_paint_pointer(ds_seat_t *, gfx_rect_t *);
     60extern void ds_seat_add_idevcfg(ds_seat_t *, ds_idevcfg_t *);
     61extern void ds_seat_remove_idevcfg(ds_idevcfg_t *);
     62extern ds_idevcfg_t *ds_seat_first_idevcfg(ds_seat_t *);
     63extern ds_idevcfg_t *ds_seat_next_idevcfg(ds_idevcfg_t *);
    5964
    6065#endif
Note: See TracChangeset for help on using the changeset viewer.