src/irc_chan.h
changeset 78 941bb8379d3d
parent 74 11ec458d1cbf
child 87 f0db6ebf18b9
equal deleted inserted replaced
77:5478ade62546 78:941bb8379d3d
    40     /** Someone joined the channel */
    40     /** Someone joined the channel */
    41     void (*on_join) (struct irc_chan *chan, const struct irc_nm *source, void *arg);
    41     void (*on_join) (struct irc_chan *chan, const struct irc_nm *source, void *arg);
    42 
    42 
    43     /** Someone parted the channel. The irc_chan_user is still present */
    43     /** Someone parted the channel. The irc_chan_user is still present */
    44     void (*on_part) (struct irc_chan *chan, const struct irc_nm *source, const char *msg, void *arg);
    44     void (*on_part) (struct irc_chan *chan, const struct irc_nm *source, const char *msg, void *arg);
       
    45 
       
    46     /** Someone quit the channel. The irc_chan_user is still present */
       
    47     void (*on_quit) (struct irc_chan *chan, const struct irc_nm *source, const char *msg, void *arg);
    45 
    48 
    46     /** Someone sent a message to the channel */
    49     /** Someone sent a message to the channel */
    47     void (*on_msg) (struct irc_chan *chan, const struct irc_nm *source, const char *msg, void *arg);
    50     void (*on_msg) (struct irc_chan *chan, const struct irc_nm *source, const char *msg, void *arg);
    48 };
    51 };
    49 
    52