home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / fido / pup_v2b.zip / DRIVER.H < prev    next >
C/C++ Source or Header  |  1985-04-19  |  916b  |  32 lines

  1.  
  2. /* Standard Fido driver parameters. These must be static variables. These
  3. are assumed to be set properly by init() in the hardware specific driver. */
  4.  
  5. /* CRT variables */
  6.  
  7. unsigned cols = 80;        /* number of CRT columns */
  8. unsigned lines = 24;        /* number of CRT lines, total */
  9. unsigned top = 0;        /* first line NUMBER */
  10. unsigned bottom = 23;        /* bottom line NUMBER */
  11.  
  12. char ulcorner = '+';        /* graphic characters for boxes */
  13. char urcorner = '+';
  14. char llcorner = '+';
  15. char lrcorner = '+';
  16. char vertbar = '|';
  17. char horizbar = '-';
  18.  
  19. char graph_on[80] = "";        /* enable graphics */
  20. char graph_off[80] = "";    /* disable graphics */
  21.  
  22. /* Modem variables */
  23.  
  24. unsigned cd_bit = 0xffff;    /* bit to test for Carrier Detect, */
  25. unsigned iodev = 0;        /* serial channel number */
  26.  
  27. /* Time stuff */
  28.  
  29. extern long millisec;        /* G.P. milliseconds */
  30. extern long millis2;
  31. extern int seconds,minutes,hours;
  32.