home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / pctech / 1988_02 / bigfile3.h < prev    next >
Text File  |  1983-02-02  |  512b  |  18 lines

  1.  
  2.  
  3. /* viewparm.h - parameters for view program */
  4.  
  5. /* number of lines in a display page */
  6. #define  PAGE_SIZE      16
  7.  
  8. /* number of lines of overlap between display pages */
  9. #define  LINES_OVERLAP   2
  10.  
  11. /* special return values from get_next_char and get_previous_char */
  12. /* to indicate that beginning or end of the file has been reached */
  13. #define  EOF_MARK       -1
  14. #define  BOF_MARK       -2
  15.  
  16. /* definition of control char marking the end of a line */
  17. #define  END_LINE       10
  18.