Changeset 04803bf in mainline for uspace/app/tetris/screen.h
- Timestamp:
- 2011-03-21T22:00:17Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 143932e3
- Parents:
- b50b5af2 (diff), 7308e84 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
uspace/app/tetris/screen.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tetris/screen.h
rb50b5af2 r04803bf 49 49 #include <sys/types.h> 50 50 #include <async.h> 51 #include <bool.h> 51 52 52 53 typedef struct { 53 ipcarg_t ws_row;54 ipcarg_t ws_col;54 sysarg_t ws_row; 55 sysarg_t ws_col; 55 56 } winsize_t; 56 57 57 58 extern winsize_t winsize; 58 59 59 extern void moveto( int r, int c);60 extern void moveto(sysarg_t r, sysarg_t c); 60 61 extern void clear_screen(void); 61 62 … … 65 66 extern void scr_end(void); 66 67 extern void scr_init(void); 67 extern void scr_msg(char *, int);68 extern void scr_msg(char *, bool); 68 69 extern void scr_set(void); 69 70 extern void scr_update(void);
Note:
See TracChangeset
for help on using the changeset viewer.
