home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / misc / b186_1 / Source / h / display < prev    next >
Text File  |  1987-09-27  |  792b  |  38 lines

  1. /*
  2.  
  3.        This file is part of the PDP software package.
  4.          
  5.        Copyright 1987 by James L. McClelland and David E. Rumelhart.
  6.        
  7.        Please refer to licensing information in the file license.txt,
  8.        which is in the same directory with this source file and is
  9.        included here by reference.
  10. */
  11.  
  12.  
  13. /* display.h
  14.  
  15.     Header file for display functions.
  16.  
  17.     First version implemented by Elliot Jaffe.
  18.     
  19.     Date of last revision:  8-12-87/JLM.
  20. */
  21.  
  22. extern int  command_x;
  23. extern int  command_y;
  24. extern int  Display_level;
  25. extern int  stand_out;
  26.  
  27. char   *get_command ();
  28. int     update_display ();
  29. int     reset_display ();
  30. int     change_display ();
  31. int     do_update_template ();
  32.  
  33. #define MAX_SCREEN_LINES     23
  34. #define MAX_SCREEN_COLUMNS     79
  35.  
  36. extern int num_lines;
  37. extern int num_cols;
  38.