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.1  2008/02/14 12:14:50  james
16  * *** empty log message ***
17  *
18  */
19
20 #ifndef __LOG_H__
21 #define __LOG_H__
22
23 #define LOG_SIGNATURE \
24         void (*log)(struct Log_struct *,char *); \
25         void (*close)(struct Log_struct *)
26
27 typedef struct Log_struct {
28         LOG_SIGNATURE;
29 } Log;
30
31
32 #endif /* __LOG_H__ */