Added app module

This commit is contained in:
James Booth
2012-02-07 00:08:59 +00:00
parent bbb0fbed4f
commit 4d190a9c43
11 changed files with 267 additions and 220 deletions

11
log.h
View File

@@ -1,13 +1,20 @@
#ifndef LOG_H
#define LOG_H
#include <stdio.h>
#include <strophe/strophe.h>
// log areas
#define PROF "prof"
#define CONN "conn"
// file log
FILE *logp;
xmpp_log_t *xmpp_get_file_logger();
void logmsg(const char * const area, const char * const msg);
void start_log(void);
void log_init(void);
void log_msg(const char * const area, const char * const msg);
void log_close(void);
#endif