Ignore:
File:
1 edited

Legend:

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

    rebe70f1 rffa2c8ef  
    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.