src/irc_log.h
branchmodules
changeset 57 ce1accba5fc7
parent 56 942370000450
--- a/src/irc_log.h	Sun Mar 15 23:01:12 2009 +0200
+++ b/src/irc_log.h	Sun Mar 15 23:22:57 2009 +0200
@@ -1,27 +1,1 @@
-#ifndef IRC_LOG_H
-#define IRC_LOG_H
-
-/**
- * @file
- *
- * Module for logging IRC events to an SQL database
- */
-#include "module.h"
-#include "error.h"
-#include "irc_chan.h"
-#include <event2/event.h>
 
-/**
- * Initialize the irc_log module to use the given configuration
- */
-void* irc_log_init (struct modules *modules, struct error_info *err);
-
-/**
- * Set one of the config options:
- *
- *  db_info     - the database connection string
- *  channel     - the '<network>/<channel>' to log
- */
-err_t irc_log_conf (void *mod_ctx, const char *name, char *value, struct error_info *err);
-
-#endif