forked from PsychoticNinja/irssi
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@632 dbcabf3a-b0e7-0310-adc4-f8d773084564
14 lines
260 B
C
14 lines
260 B
C
#ifndef __IRC_MASKS_H
|
|
#define __IRC_MASKS_H
|
|
|
|
#include "masks.h"
|
|
|
|
#define IRC_MASK_NICK 0x01
|
|
#define IRC_MASK_USER 0x02
|
|
#define IRC_MASK_HOST 0x04
|
|
#define IRC_MASK_DOMAIN 0x08
|
|
|
|
char *irc_get_mask(const char *nick, const char *address, int flags);
|
|
|
|
#endif
|