X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flog.cpp;h=5b2f76317f49b08b1d5433fe37a6a739dc143912;hb=836c7fa1f3e2dc3ec9849cac2584d4544bf2fba4;hp=144eb3bfa3fbe838f8512659014a134f9daa64c9;hpb=2acc4f075932e711cfacd198672f7c99ea4b853e;p=virtualjaguar diff --git a/src/log.cpp b/src/log.cpp index 144eb3b..5b2f763 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -1,20 +1,23 @@ // // Log handler // -// by Cal2 +// Originally by David Raingeard (Cal2) // GCC/SDL port by Niels Wagenaar (Linux/WIN32) and Caz (BeOS) // Cleanups/new stuff by James L. Hammons // -#include "types.h" #include "log.h" +#include +#include +#include "types.h" + #define MAX_LOG_SIZE 10000000 // Maximum size of log file (10 MB) static FILE * log_stream = NULL; static uint32 logSize = 0; -int log_init(char * path) +int LogInit(const char * path) { log_stream = fopen(path, "wrt"); @@ -24,12 +27,12 @@ int log_init(char * path) return 1; } -FILE * log_get(void) +FILE * LogGet(void) { return log_stream; } -void log_done(void) +void LogDone(void) { fclose(log_stream); } @@ -50,7 +53,7 @@ void WriteLog(const char * text, ...) fflush(log_stream); fclose(log_stream); exit(1); - } + }//*/ va_end(arg); fflush(log_stream); // Make sure that text is written!