- Timestamp:
- 2010-03-27T12:30:00Z (15 years ago)
- Branches:
- master
- Children:
- 9b69eb7
- Parents:
- b95932e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc.h
rb95932e r83e92bf 118 118 char *name; 119 119 char *topic; 120 char *topic_who; 121 time_t topic_time; 120 122 char mode[8]; 121 123 GSList *users; … … 145 147 irc_channel_t *irc_channel_new( irc_t *irc, const char *name ); 146 148 irc_channel_t *irc_channel_by_name( irc_t *irc, const char *name ); 149 int irc_channel_free( irc_channel_t *ic ); 147 150 int irc_channel_add_user( irc_channel_t *ic, irc_user_t *iu ); 148 151 int irc_channel_del_user( irc_channel_t *ic, irc_user_t *iu ); 149 int irc_channel_set_topic( irc_channel_t *ic, const char *topic );152 int irc_channel_set_topic( irc_channel_t *ic, const char *topic, const irc_user_t *who ); 150 153 151 154 /* irc_commands.c */ … … 160 163 void irc_send_part( irc_channel_t *ic, irc_user_t *iu, const char *reason ); 161 164 void irc_send_names( irc_channel_t *ic ); 162 void irc_send_topic( irc_channel_t *ic );165 void irc_send_topic( irc_channel_t *ic, gboolean topic_change ); 163 166 void irc_send_whois( irc_user_t *iu ); 164 167
Note: See TracChangeset
for help on using the changeset viewer.