Changeset 87a7cdb in mainline for uspace/srv/hid/display/output.h


Ignore:
Timestamp:
2019-12-05T19:35:12Z (5 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
71cbe5c
Parents:
973efd36
Message:

Enumerate display devices for output, RFB conversion (WIP)

Currently we can only have one active output device. Bitmaps
do not work as ipcgfx does not accept alloc != NULL.
Need to fill in tests.

File:
1 edited

Legend:

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

    r973efd36 r87a7cdb  
    4040#include <io/kbd_event.h>
    4141#include <io/pos_event.h>
     42#include "types/display/output.h"
    4243
    43 extern errno_t output_init(void (*)(void *, kbd_event_t *), void *,
    44     void (*)(void *, pos_event_t *), void *,
    45     gfx_context_t **);
     44extern errno_t ds_output_create(void (*)(void *, kbd_event_t *),
     45    void *, void (*)(void *, pos_event_t *), void *, ds_output_t **);
     46extern errno_t ds_output_start_discovery(ds_output_t *);
     47extern void ds_output_destroy(ds_output_t *);
    4648
    4749#endif
Note: See TracChangeset for help on using the changeset viewer.