aboutsummaryrefslogtreecommitdiffstats
path: root/src/log.h
blob: 475fe161bbe2b2f53ae7c88b0b861d2ce0b7434e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 * log.h:
 *
 * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
 * All rights reserved.
 *
 */

/*
 * $Id$
 */

/*
 * $Log$
 * Revision 1.2  2008/02/23 11:48:37  james
 * *** empty log message ***
 *
 * 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__ */