chiark / gitweb /
*** empty log message ***
[sympathy.git] / src / log.h
1 /*
2  * log.h:
3  *
4  * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
5  * All rights reserved.
6  *
7  */
8
9 /*
10  * $Id$
11  */
12
13 /*
14  * $Log$
15  * Revision 1.2  2008/02/23 11:48:37  james
16  * *** empty log message ***
17  *
18  * Revision 1.1  2008/02/14 12:14:50  james
19  * *** empty log message ***
20  *
21  */
22
23 #ifndef __LOG_H__
24 #define __LOG_H__
25
26 #define LOG_SIGNATURE \
27         void (*log)(struct Log_struct *,char *); \
28         void (*close)(struct Log_struct *)
29
30 typedef struct Log_struct
31 {
32   LOG_SIGNATURE;
33 } Log;
34
35
36 #endif /* __LOG_H__ */