Changeset 338d0935 in mainline for uspace/app/gfxdemo/gfxdemo.c
- Timestamp:
- 2020-03-02T11:22:01Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a2e104e
- Parents:
- 7bb45e3
- git-author:
- Jiri Svoboda <jiri@…> (2020-02-01 11:18:50)
- git-committer:
- Jiri Svoboda <jiri@…> (2020-03-02 11:22:01)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/gfxdemo/gfxdemo.c
r7bb45e3 r338d0935 50 50 #include <window.h> 51 51 52 static void wnd_close_event(void *); 52 53 static void wnd_kbd_event(void *, kbd_event_t *); 53 54 54 55 static display_wnd_cb_t wnd_cb = { 56 .close_event = wnd_close_event, 55 57 .kbd_event = wnd_kbd_event 56 58 }; … … 500 502 } 501 503 504 static void wnd_close_event(void *arg) 505 { 506 printf("Close event\n"); 507 quit = true; 508 } 509 502 510 static void wnd_kbd_event(void *arg, kbd_event_t *event) 503 511 {
Note:
See TracChangeset
for help on using the changeset viewer.