Ignore:
File:
1 edited

Legend:

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

    r9f1362d4 r8be2833  
    4848
    4949#include <sys/types.h>
    50 #include <ipc/ipc.h>
    5150#include <async.h>
    52 #include <bool.h>
    5351
    5452typedef struct {
    55         ipcarg_t ws_row;
    56         ipcarg_t ws_col;
     53        int ws_row;
     54        int ws_col;
    5755} winsize_t;
    5856
    5957extern winsize_t winsize;
    6058
    61 extern void moveto(ipcarg_t r, ipcarg_t c);
     59extern void moveto(int r, int c);
    6260extern void clear_screen(void);
    6361
     
    6765extern void scr_end(void);
    6866extern void scr_init(void);
    69 extern void scr_msg(char *, bool);
     67extern void scr_msg(char *, int);
    7068extern void scr_set(void);
    7169extern void scr_update(void);
Note: See TracChangeset for help on using the changeset viewer.