Changeset aeb3037 in mainline for uspace/lib/display/include
- Timestamp:
- 2020-03-18T17:27:18Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0680854
- Parents:
- 1a1271d
- git-author:
- Jiri Svoboda <jiri@…> (2020-03-18 16:57:15)
- git-committer:
- Jiri Svoboda <jiri@…> (2020-03-18 17:27:18)
- Location:
- uspace/lib/display/include
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/display/include/disp_srv.h
r1a1271d raeb3037 41 41 #include "display/wndparams.h" 42 42 #include "types/display/event.h" 43 #include "types/display/info.h" 43 44 #include "types/display/wndresize.h" 44 45 … … 60 61 errno_t (*window_resize)(void *, sysarg_t, gfx_coord2_t *, gfx_rect_t *); 61 62 errno_t (*get_event)(void *, sysarg_t *, display_wnd_ev_t *); 63 errno_t (*get_info)(void *, display_info_t *); 62 64 }; 63 65 -
uspace/lib/display/include/display.h
r1a1271d raeb3037 43 43 #include "display/wndresize.h" 44 44 #include "types/display.h" 45 #include "types/display/info.h" 45 46 46 47 extern errno_t display_open(const char *, display_t **); 47 48 extern void display_close(display_t *); 49 extern errno_t display_get_info(display_t *, display_info_t *); 50 48 51 extern errno_t display_window_create(display_t *, display_wnd_params_t *, 49 52 display_wnd_cb_t *, void *, display_window_t **); -
uspace/lib/display/include/ipc/display.h
r1a1271d raeb3037 45 45 DISPLAY_WINDOW_RESIZE, 46 46 DISPLAY_WINDOW_RESIZE_REQ, 47 DISPLAY_GET_EVENT 47 DISPLAY_GET_EVENT, 48 DISPLAY_GET_INFO 48 49 } display_request_t; 49 50
Note:
See TracChangeset
for help on using the changeset viewer.