/* * FISG - Input Formats * Programmed and designed by Matti 'ccr' Hamalainen * (C) Copyright 2003-2004 Tecnic Software productions (TNSP) * * Please read file 'COPYING' for information on license and distribution. */ #ifndef _IN_FORMATS_H #define _IN_FORMATS_H /* * Defination of the in-format structure */ typedef struct { char *ifName, /* Name of this logfile-format */ *ifDescription, /* Short description */ *fmtPublic, /* Format-string for public messages */ *fmtNotice, *fmtAction, *fmtMode, *fmtJoin, *fmtPart, *fmtQuit, *fmtKick, *fmtNickChange, *fmtTopicChange, *fmtDayChange; } t_logformat; extern t_logformat inputFormats[]; extern const int nInputFormats; #endif /* _IN_FORMATS_H */