mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
24 lines
445 B
C++
24 lines
445 B
C++
|
|
#ifndef LOGFILE_H
|
|
#define LOGFILE_H
|
|
|
|
void log_Enable(bool enable);
|
|
void log_Disable();
|
|
|
|
class logfile {
|
|
void *fp;
|
|
|
|
public:
|
|
logfile(); // simple constructor
|
|
~logfile();
|
|
|
|
void start(const char *fname, const char *longname = 0); // restarts the logfile (opens a new one.)
|
|
void end();
|
|
|
|
void printf(const char *fmt, ...);
|
|
void puts(const char *msg);
|
|
void update(); // call to update logfile on disk (done by OS otherwise)
|
|
};
|
|
|
|
#endif
|