Changeset 673a54c for protocols/nogaim.h
- Timestamp:
- 2009-03-12T19:33:28Z (16 years ago)
- Branches:
- master
- Children:
- fc34fb5
- Parents:
- 823de9d (diff), 9e768da (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/nogaim.h
r823de9d r673a54c 213 213 * not implement this. */ 214 214 struct groupchat * 215 (* chat_join) (struct im_connection *, c har *room, char *nick,char *password);215 (* chat_join) (struct im_connection *, const char *room, const char *nick, const char *password); 216 216 /* Change the topic, if supported. Note that BitlBee expects the IM 217 217 server to confirm the topic change with a regular topic change … … 243 243 * the account_t parameter. */ 244 244 G_MODULE_EXPORT struct im_connection *imcb_new( account_t *acc ); 245 G_MODULE_EXPORT void imc b_free( struct im_connection *ic );245 G_MODULE_EXPORT void imc_free( struct im_connection *ic ); 246 246 /* Once you're connected, you should call this function, so that the user will 247 247 * see the success. */ … … 294 294 * the user her/himself. At that point the group chat will be visible to the 295 295 * user, too. */ 296 G_MODULE_EXPORT struct groupchat *imcb_chat_new( struct im_connection *ic, c har *handle );296 G_MODULE_EXPORT struct groupchat *imcb_chat_new( struct im_connection *ic, const char *handle ); 297 297 G_MODULE_EXPORT void imcb_chat_add_buddy( struct groupchat *b, char *handle ); 298 298 /* To remove a handle from a group chat. Reason can be NULL. */
Note: See TracChangeset
for help on using the changeset viewer.