mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 21:00:40 +02:00
- GNOME version isn't anymore build here so you don't need all that GTK and GNOME crap to compile irssi-text. - Some fixes to compile with -ansi -pedantic git-svn-id: http://svn.irssi.org/repos/irssi/trunk@200 dbcabf3a-b0e7-0310-adc4-f8d773084564
21 lines
384 B
C
21 lines
384 B
C
#include "printtext.h"
|
|
|
|
enum {
|
|
IRCTXT_MODULE_NAME,
|
|
|
|
IRCTXT_FILL_1,
|
|
|
|
IRCTXT_NOTIFY_JOIN,
|
|
IRCTXT_NOTIFY_PART,
|
|
IRCTXT_NOTIFY_AWAY,
|
|
IRCTXT_NOTIFY_UNAWAY,
|
|
IRCTXT_NOTIFY_UNIDLE,
|
|
IRCTXT_NOTIFY_ONLINE,
|
|
IRCTXT_NOTIFY_OFFLINE,
|
|
IRCTXT_NOTIFY_LIST
|
|
};
|
|
|
|
extern FORMAT_REC fecommon_irc_notifylist_formats[];
|
|
#define MODULE_FORMATS fecommon_irc_notifylist_formats
|
|
|
|
#include "printformat.h"
|