[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 and 1.5

version 1.1, 2007/10/16 09:41:04 version 1.5, 2007/10/16 22:04:52
Line 9 
Line 9 
   
 #define NFCONS 1  #define NFCONS 1
   
 struct fcons_devdata {  struct fcons_handle {
         /* current cursor position */          void    *fh_ownerdd;    /* similar to bh_ownerdd in bus_handle; XXX kill this cause it is ugly */
         uint8_t currow;  
         uint8_t curcol;  
   
           char    (*getc)(void *);
           void    (*putc)(void *, char);
 };  };
   
   
 struct consoleops {  struct fcons_dd {
         char    (*getc)(struct device *);          /* current cursor position */
         void    (*putc)(struct device *, char);          uint8_t currow;
           uint8_t curcol;
   
           struct fcons_handle fd_fh;
 };  };
   
   

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.5

CVSweb