Changeset 04803bf in mainline for uspace/app/tetris/screen.h


Ignore:
Timestamp:
2011-03-21T22:00:17Z (15 years ago)
Author:
Jiri Svoboda <jiri@…>
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.
Message:

Merge mainline changes (needs fixes).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tetris/screen.h

    rb50b5af2 r04803bf  
    4949#include <sys/types.h>
    5050#include <async.h>
     51#include <bool.h>
    5152
    5253typedef struct {
    53         ipcarg_t ws_row;
    54         ipcarg_t ws_col;
     54        sysarg_t ws_row;
     55        sysarg_t ws_col;
    5556} winsize_t;
    5657
    5758extern winsize_t winsize;
    5859
    59 extern void moveto(int r, int c);
     60extern void moveto(sysarg_t r, sysarg_t c);
    6061extern void clear_screen(void);
    6162
     
    6566extern void scr_end(void);
    6667extern void scr_init(void);
    67 extern void scr_msg(char *, int);
     68extern void scr_msg(char *, bool);
    6869extern void scr_set(void);
    6970extern void scr_update(void);
Note: See TracChangeset for help on using the changeset viewer.