X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flog.cpp;h=76c0aa98cd83ca5d900d0113a0e8a83e2d1c3165;hb=68e8886a9aaf48fcc130334d8cf4fe35a4534a02;hp=ea38d63ef6dbc85f9c103c10d1672d5bec973036;hpb=99022b1729761292b036c382934b73e62f06923b;p=virtualjaguar diff --git a/src/log.cpp b/src/log.cpp index ea38d63..76c0aa9 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -4,17 +4,27 @@ // Originally by David Raingeard (Cal2) // GCC/SDL port by Niels Wagenaar (Linux/WIN32) and Caz (BeOS) // Cleanups/new stuff by James L. Hammons +// (C) 2010 Underground Software +// +// JLH = James L. Hammons +// +// Who When What +// --- ---------- ------------------------------------------------------------- +// JLH 01/16/2010 Created this log ;-) // -#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 +34,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); }