chiark / gitweb /
Merge branch 'cvsimport'
[sympathy.git] / src / log.h
index 475fe161bbe2b2f53ae7c88b0b861d2ce0b7434e..971d0d162fc0740a022913c798646e9f831f9f79 100644 (file)
--- a/src/log.h
+++ b/src/log.h
@@ -1,4 +1,4 @@
-/*
+/* 
  * log.h:
  *
  * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
@@ -6,12 +6,27 @@
  *
  */
 
-/*
- * $Id$
+/* 
+ * $Id: log.h,v 1.7 2010/07/27 14:49:35 james Exp $
  */
 
-/*
- * $Log$
+/* 
+ * $Log: log.h,v $
+ * Revision 1.7  2010/07/27 14:49:35  james
+ * add support for byte logging
+ *
+ * Revision 1.6  2008/03/10 11:49:33  james
+ * *** empty log message ***
+ *
+ * Revision 1.5  2008/03/07 12:37:04  james
+ * *** empty log message ***
+ *
+ * Revision 1.4  2008/03/03 06:04:42  james
+ * *** empty log message ***
+ *
+ * Revision 1.3  2008/03/02 10:37:56  james
+ * *** empty log message ***
+ *
  * Revision 1.2  2008/02/23 11:48:37  james
  * *** empty log message ***
  *
 #define __LOG_H__
 
 #define LOG_SIGNATURE \
+       struct Log_struct *next; \
        void (*log)(struct Log_struct *,char *); \
+       void (*log_bytes)(struct Log_struct *,void *,int); \
+       void (*sighup)(struct Log_struct *); \
        void (*close)(struct Log_struct *)
 
-typedef struct Log_struct
-{
+typedef struct Log_struct {
   LOG_SIGNATURE;
 } Log;