Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc.h

    rfda194f r0e788f5  
    22  * BitlBee -- An IRC to other IM-networks gateway                     *
    33  *                                                                    *
    4   * Copyright 2002-2010 Wilmer van der Gaast and others                *
     4  * Copyright 2002-2013 Wilmer van der Gaast and others                *
    55  \********************************************************************/
    66
     
    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.