Changes in uspace/srv/hid/output/output.h [bbc6277:5b0cf63] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/output/output.h
rbbc6277 r5b0cf63 42 42 43 43 typedef struct { 44 int (*yield)(struct outdev *dev);45 int (*claim)(struct outdev *dev);44 errno_t (*yield)(struct outdev *dev); 45 errno_t (*claim)(struct outdev *dev); 46 46 47 void (* 47 void (*get_dimensions)(struct outdev *dev, sysarg_t *cols, 48 48 sysarg_t *rows); 49 console_caps_t (* 49 console_caps_t (*get_caps)(struct outdev *dev); 50 50 51 void (* 51 void (*cursor_update)(struct outdev *dev, sysarg_t prev_col, 52 52 sysarg_t prev_row, sysarg_t col, sysarg_t row, bool visible); 53 void (* 54 void (* 53 void (*char_update)(struct outdev *dev, sysarg_t col, sysarg_t row); 54 void (*flush)(struct outdev *dev); 55 55 } outdev_ops_t; 56 56
Note:
See TracChangeset
for help on using the changeset viewer.