home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR3 / EQTREE.ZIP / LOGFILE.H < prev    next >
C/C++ Source or Header  |  1994-01-18  |  359b  |  24 lines

  1. /*
  2.  * LOGFILE.h
  3.  *
  4.  * Logdatei und Funktionen darauf
  5.  *
  6.  * Autor: SG
  7.  * Stand: 25.1.93
  8.  *
  9.  */
  10.  
  11. #ifndef __LOGFILE_H
  12. #define __LOGFILE_H
  13.  
  14. int LOInit(const char *Logfilename);
  15. int LOAppend(const char *Logfilename);
  16.  
  17. int LOItem(const char *Format,...);
  18.  
  19. void ERFatal(const char *Format,...);
  20. int ERMessage(const char *Format,...);
  21.  
  22.  
  23. #endif
  24.