Changeset f0ccb2a in mainline for uspace/lib/ui/test/pbutton.c
- Timestamp:
- 2021-04-09T22:41:22Z (4 years ago)
- Branches:
- master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4d2a4cd
- Parents:
- f536a16
- git-author:
- Jiri Svoboda <jiri@…> (2021-04-02 17:35:19)
- git-committer:
- jxsvoboda <5887334+jxsvoboda@…> (2021-04-09 22:41:22)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/test/pbutton.c
rf536a16 rf0ccb2a 1 1 /* 2 * Copyright (c) 202 0Jiri Svoboda2 * Copyright (c) 2021 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 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, … … 499 501 (void) arg; 500 502 (void) rect; 503 return EOK; 504 } 505 506 static errno_t testgc_update(void *arg) 507 { 508 (void) arg; 501 509 return EOK; 502 510 }
Note:
See TracChangeset
for help on using the changeset viewer.