home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / program / c / bts310b5 / logfile.h < prev    next >
C/C++ Source or Header  |  1991-10-24  |  468b  |  29 lines

  1. #ifndef H_LOGFILE
  2. #define H_LOGFILE
  3. /*
  4.  * logfile.h
  5.  *
  6.  * Definitions for logfile handling
  7.  */
  8.  
  9. /* Variables */
  10.  
  11. extern int loglevel;
  12. extern BOOLEAN debugging_log;
  13. extern int need_update;
  14.  
  15. /* Functions */
  16.  
  17. int init_log(char *name, long length);
  18. int open_log(void);
  19. void close_log(void);
  20. void flush_log(void);
  21. void update_log(void);
  22.  
  23.  
  24. /* void clear_statusline (void); */
  25. void status_line (char *,...);
  26. void show_debug_name (char *);
  27.  
  28. #endif
  29.