[BACK]Return to fconsvar.h CVS log [TXT][DIR] Up to [local] / funnyos / dev / fcons

Diff for /funnyos/dev/fcons/fconsvar.h between version 1.1.1.1 and 1.7

version 1.1.1.1, 2007/10/16 09:41:04 version 1.7, 2007/10/16 22:10:32
Line 7 
Line 7 
 #define FCONS_WIDTH     80  #define FCONS_WIDTH     80
 #define FCONS_HEIGHT    25  #define FCONS_HEIGHT    25
   
 #define NFCONS 1  struct fcons_handle {
           void    *fh_ownerdd;    /* similar to bh_ownerdd in bus_handle; XXX kill this cause it is ugly */
   
 struct fcons_devdata {          char    (*getc)(void *);
         /* current cursor position */          void    (*putc)(void *, char);
         uint8_t currow;  
         uint8_t curcol;  
   
 };  };
   
   
 struct consoleops {  struct fcons_dd {
         char    (*getc)(struct device *);          /* current cursor position */
         void    (*putc)(struct device *, char);          uint8_t         fd_currow;
           uint8_t         fd_curcol;
   
           struct fcons_handle fd_fh;
 };  };
   
   
 int     fcons_devctl(struct device *devp, uint8_t ctl, void *data);  int     fcons_devctl(struct device *devp, uint8_t ctl, void *data);
 char    fcons_getchar(struct device *devp);  char    fcons_getchar(void *ddp);
 void    fcons_putchar(struct device *devp, char ch);  void    fcons_putchar(void *ddp, char ch);
   
 /* XXX */  
 //#define putchar(x)    fcons_putchar()  
   
   
 /* devctl stuff */  /* devctl stuff */
 #define DCFCONS_GETCURROW       0  #define DCFCONS_GETCURROW       0

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.7

CVSweb