Changes in protocols/nogaim.h [424e663:fa295e36]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/nogaim.h
r424e663 rfa295e36 209 209 * not implement this. */ 210 210 struct groupchat * 211 (* chat_join) (struct im_connection *, c har *room, char *nick,char *password);211 (* chat_join) (struct im_connection *, const char *room, const char *nick, const char *password); 212 212 /* Change the topic, if supported. Note that BitlBee expects the IM 213 213 server to confirm the topic change with a regular topic change … … 224 224 * - Most protocols will just want to set this to g_strcasecmp().*/ 225 225 int (* handle_cmp) (const char *who1, const char *who2); 226 227 /* Implement these callbacks if you want to use imcb_ask_auth() */ 228 void (* auth_allow) (struct im_connection *, const char *who); 229 void (* auth_deny) (struct im_connection *, const char *who); 226 230 }; 227 231 … … 239 243 * the account_t parameter. */ 240 244 G_MODULE_EXPORT struct im_connection *imcb_new( account_t *acc ); 241 G_MODULE_EXPORT void imc b_free( struct im_connection *ic );245 G_MODULE_EXPORT void imc_free( struct im_connection *ic ); 242 246 /* Once you're connected, you should call this function, so that the user will 243 247 * see the success. */ … … 252 256 /* To tell the user an error, ie. before logging out when an error occurs. */ 253 257 G_MODULE_EXPORT void imcb_error( struct im_connection *ic, char *format, ... ) G_GNUC_PRINTF( 2, 3 ); 258 254 259 /* To ask a your about something. 255 260 * - 'msg' is the question. … … 258 263 */ 259 264 G_MODULE_EXPORT void imcb_ask( struct im_connection *ic, char *msg, void *data, query_callback doit, query_callback dont ); 260 G_MODULE_EXPORT void imcb_ask_add( struct im_connection *ic, char *handle, const char *realname ); 265 266 /* Two common questions you may want to ask: 267 * - X added you to his contact list, allow? 268 * - X is not in your contact list, want to add? 269 */ 270 G_MODULE_EXPORT void imcb_ask_auth( struct im_connection *ic, const char *handle, const char *realname ); 271 G_MODULE_EXPORT void imcb_ask_add( struct im_connection *ic, const char *handle, const char *realname ); 261 272 262 273 /* Buddy management */ … … 290 301 * the user her/himself. At that point the group chat will be visible to the 291 302 * user, too. */ 292 G_MODULE_EXPORT struct groupchat *imcb_chat_new( struct im_connection *ic, c har *handle );303 G_MODULE_EXPORT struct groupchat *imcb_chat_new( struct im_connection *ic, const char *handle ); 293 304 G_MODULE_EXPORT void imcb_chat_add_buddy( struct groupchat *b, char *handle ); 294 305 /* To remove a handle from a group chat. Reason can be NULL. */
Note: See TracChangeset
for help on using the changeset viewer.