X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Flog.h;h=8be37b085f4bdee901f8aa1e8cf57eea729c16cf;hb=8fd71184fa820302e47c2d168f9c989274c08b6a;hp=dd323421bce6fbbaa858512789cb98ac9e2f2374;hpb=5191e1cb38d24ebf5c180ac7911893ca8bc4031f;p=umurmur.git diff --git a/src/log.h b/src/log.h index dd32342..8be37b0 100644 --- a/src/log.h +++ b/src/log.h @@ -1,5 +1,5 @@ -/* Copyright (C) 2010, Martin Johansson - Copyright (C) 2005-2010, Thorvald Natvig +/* Copyright (C) 2009-2014, Martin Johansson + Copyright (C) 2005-2014, Thorvald Natvig All rights reserved. @@ -32,6 +32,7 @@ #define LOG_H_2435642356 #include "types.h" +#include "client.h" #define doAssert(_cond_) do { \ if (!(_cond_)) { \ @@ -51,9 +52,11 @@ void Log_debug(const char *logstring, ...); void Log_warn(const char *logstring, ...); void Log_info(const char *logstring, ...); +void Log_info_client(client_t *client, const char *logstring, ...); void Log_fatal(const char *logstring, ...); void Log_init(bool_t terminal); +void Log_reset(); void Log_free(); #endif