Changeset e7b32d7 in mainline for uspace/lib/ui/test/rbutton.c
- Timestamp:
- 2021-04-02T17:35:19Z (4 years ago)
- Children:
- 7a8af2f
- Parents:
- 2e1dbf7d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/test/rbutton.c
r2e1dbf7d re7b32d7 43 43 static errno_t testgc_set_color(void *, gfx_color_t *); 44 44 static errno_t testgc_fill_rect(void *, gfx_rect_t *); 45 static errno_t testgc_update(void *); 45 46 static errno_t testgc_bitmap_create(void *, gfx_bitmap_params_t *, 46 47 gfx_bitmap_alloc_t *, void **); … … 52 53 .set_color = testgc_set_color, 53 54 .fill_rect = testgc_fill_rect, 55 .update = testgc_update, 54 56 .bitmap_create = testgc_bitmap_create, 55 57 .bitmap_destroy = testgc_bitmap_destroy, … … 564 566 (void) arg; 565 567 (void) rect; 568 return EOK; 569 } 570 571 static errno_t testgc_update(void *arg) 572 { 573 (void) arg; 566 574 return EOK; 567 575 }
Note:
See TracChangeset
for help on using the changeset viewer.