diff options
Diffstat (limited to 'src/fe-common/core/fe-channels.h')
-rw-r--r-- | src/fe-common/core/fe-channels.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/fe-common/core/fe-channels.h b/src/fe-common/core/fe-channels.h index 3d6d31ab..a8aa697e 100644 --- a/src/fe-common/core/fe-channels.h +++ b/src/fe-common/core/fe-channels.h @@ -1,7 +1,13 @@ #ifndef __FE_CHANNELS_H #define __FE_CHANNELS_H -void fe_channels_nicklist(CHANNEL_REC *channel); +#define CHANNEL_NICKLIST_FLAG_OPS 0x01 +#define CHANNEL_NICKLIST_FLAG_HALFOPS 0x02 +#define CHANNEL_NICKLIST_FLAG_VOICES 0x04 +#define CHANNEL_NICKLIST_FLAG_NORMAL 0x08 +#define CHANNEL_NICKLIST_FLAG_ALL 0x0f + +void fe_channels_nicklist(CHANNEL_REC *channel, int flags); void fe_channels_init(void); void fe_channels_deinit(void); |