Changeset 3a6d44b7 in mainline for uspace/lib/wndmgt/src/wndmgt.c
- Timestamp:
- 2022-11-07T17:42:51Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60ebe63
- Parents:
- f1f433d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/wndmgt/src/wndmgt.c
rf1f433d r3a6d44b7 287 287 * 288 288 * @param wndmgt Window management session 289 * @param seat_id Seat ID 289 290 * @param wnd_id Window ID 290 291 * @return EOK on success or an error code 291 292 */ 292 errno_t wndmgt_activate_window(wndmgt_t *wndmgt, sysarg_t wnd_id) 293 errno_t wndmgt_activate_window(wndmgt_t *wndmgt, sysarg_t seat_id, 294 sysarg_t wnd_id) 293 295 { 294 296 async_exch_t *exch; … … 296 298 297 299 exch = async_exchange_begin(wndmgt->sess); 298 rc = async_req_1_0(exch, WNDMGT_ACTIVATE_WINDOW, wnd_id); 300 rc = async_req_2_0(exch, WNDMGT_ACTIVATE_WINDOW, seat_id, 301 wnd_id); 299 302 300 303 async_exchange_end(exch);
Note:
See TracChangeset
for help on using the changeset viewer.