From e977995b9e97c8f7a795843c753ff59468510c4d Mon Sep 17 00:00:00 2001 From: james <> Date: Thu, 14 Feb 2008 12:17:42 +0000 Subject: *** empty log message *** --- src/log.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/log.h (limited to 'src/log.h') 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 , + * 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__ */ -- cgit v1.2.3