X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flog.cpp;h=5b2f76317f49b08b1d5433fe37a6a739dc143912;hb=be2fdb272ceeb72d9c50e7d66b58cb73734980f9;hp=ce660e8a0cf742fdf189f05d0ddfa4308fc89030;hpb=6c19e4098a43c47f8cd1824902f7335e124b834f;p=virtualjaguar diff --git a/src/log.cpp b/src/log.cpp index ce660e8..5b2f763 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -17,7 +17,7 @@ static FILE * log_stream = NULL; static uint32 logSize = 0; -int log_init(const char * path) +int LogInit(const char * path) { log_stream = fopen(path, "wrt"); @@ -27,12 +27,12 @@ int log_init(const char * path) return 1; } -FILE * log_get(void) +FILE * LogGet(void) { return log_stream; } -void log_done(void) +void LogDone(void) { fclose(log_stream); }