Changeset a35b458 in mainline for uspace/app/vterm/vterm.c
- Timestamp:
- 2018-03-02T20:10:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1380b7
- Parents:
- 3061bc1
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:38:31)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:10:49)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/vterm/vterm.c
r3061bc1 ra35b458 48 48 return 1; 49 49 } 50 50 51 51 window_t *main_window = window_open(argv[1], NULL, 52 52 WINDOW_MAIN | WINDOW_DECORATED, "vterm"); … … 55 55 return 2; 56 56 } 57 57 58 58 window_resize(main_window, 0, 0, 648, 508, WINDOW_PLACEMENT_ANY); 59 59 terminal_t *terminal_widget = … … 64 64 return 3; 65 65 } 66 66 67 67 window_exec(main_window); 68 68 task_retval(0); 69 69 async_manager(); 70 70 71 71 return 0; 72 72 }
Note:
See TracChangeset
for help on using the changeset viewer.