Changeset a5c6ebd for irc.h


Ignore:
Timestamp:
2013-02-21T18:09:19Z (11 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
03886fc
Parents:
06eef80
Message:

! modified for control channel fill_by setting to for example create a
separate control channel with all contacts *not* in a certain group/from
a certain IM account/network, etc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.h

    r06eef80 ra5c6ebd  
    207207typedef enum
    208208{
    209         IRC_CC_TYPE_DEFAULT,
    210         IRC_CC_TYPE_REST,
    211         IRC_CC_TYPE_GROUP,
    212         IRC_CC_TYPE_ACCOUNT,
    213         IRC_CC_TYPE_PROTOCOL,
     209        IRC_CC_TYPE_DEFAULT  = 0x00001,
     210        IRC_CC_TYPE_REST     = 0x00002, /* Still not implemented. */
     211        IRC_CC_TYPE_GROUP    = 0x00004,
     212        IRC_CC_TYPE_ACCOUNT  = 0x00008,
     213        IRC_CC_TYPE_PROTOCOL = 0x00010,
     214        IRC_CC_TYPE_MASK     = 0x000ff,
     215        IRC_CC_TYPE_INVERT   = 0x00100,
    214216} irc_control_channel_type_t;
    215217
Note: See TracChangeset for help on using the changeset viewer.