aboutsummaryrefslogtreecommitdiffstats
path: root/src/log.h
diff options
context:
space:
mode:
authorjames <>2008-02-14 12:17:42 +0000
committerjames <>2008-02-14 12:17:42 +0000
commite977995b9e97c8f7a795843c753ff59468510c4d (patch)
tree4e96c6c0cb1cf5eb228839b6f18e53ebfb969378 /src/log.h
parent5a4c8aa348f78026a568ff684b42ea1a2733aa2a (diff)
downloadsympathy-e977995b9e97c8f7a795843c753ff59468510c4d.tar.gz
sympathy-e977995b9e97c8f7a795843c753ff59468510c4d.tar.bz2
sympathy-e977995b9e97c8f7a795843c753ff59468510c4d.zip
*** empty log message ***
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/log.h b/src/log.h
new file mode 100644
index 0000000..0b248df
--- /dev/null
+++ b/src/log.h
@@ -0,0 +1,32 @@
+/*
+ * log.h:
+ *
+ * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
+ * All rights reserved.
+ *
+ */
+
+/*
+ * $Id$
+ */
+
+/*
+ * $Log$
+ * Revision 1.1 2008/02/14 12:14:50 james
+ * *** empty log message ***
+ *
+ */
+
+#ifndef __LOG_H__
+#define __LOG_H__
+
+#define LOG_SIGNATURE \
+ void (*log)(struct Log_struct *,char *); \
+ void (*close)(struct Log_struct *)
+
+typedef struct Log_struct {
+ LOG_SIGNATURE;
+} Log;
+
+
+#endif /* __LOG_H__ */