Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/nogaim.h

    rc6ca3ee r4cf80bb  
    3939#define _NOGAIM_H
    4040
     41#include <stdint.h>
     42
    4143#include "bitlbee.h"
    4244#include "account.h"
     
    208210         * not implement this. */
    209211        struct groupchat *
    210              (* chat_join)      (struct im_connection *, char *room, char *nick, char *password);
     212             (* chat_join)      (struct im_connection *, const char *room, const char *nick, const char *password);
    211213        /* Change the topic, if supported. Note that BitlBee expects the IM
    212214           server to confirm the topic change with a regular topic change
     
    223225         * - Most protocols will just want to set this to g_strcasecmp().*/
    224226        int (* handle_cmp) (const char *who1, const char *who2);
     227
     228        /* Implement these callbacks if you want to use imcb_ask_auth() */
     229        void (* auth_allow)     (struct im_connection *, const char *who);
     230        void (* auth_deny)      (struct im_connection *, const char *who);
    225231};
    226232
     
    238244 * the account_t parameter. */
    239245G_MODULE_EXPORT struct im_connection *imcb_new( account_t *acc );
    240 G_MODULE_EXPORT void imcb_free( struct im_connection *ic );
     246G_MODULE_EXPORT void imc_free( struct im_connection *ic );
    241247/* Once you're connected, you should call this function, so that the user will
    242248 * see the success. */
     
    251257/* To tell the user an error, ie. before logging out when an error occurs. */
    252258G_MODULE_EXPORT void imcb_error( struct im_connection *ic, char *format, ... ) G_GNUC_PRINTF( 2, 3 );
     259
    253260/* To ask a your about something.
    254261 * - 'msg' is the question.
     
    257264 */
    258265G_MODULE_EXPORT void imcb_ask( struct im_connection *ic, char *msg, void *data, query_callback doit, query_callback dont );
    259 G_MODULE_EXPORT void imcb_ask_add( struct im_connection *ic, char *handle, const char *realname );
     266
     267/* Two common questions you may want to ask:
     268 * - X added you to his contact list, allow?
     269 * - X is not in your contact list, want to add?
     270 */
     271G_MODULE_EXPORT void imcb_ask_auth( struct im_connection *ic, const char *handle, const char *realname );
     272G_MODULE_EXPORT void imcb_ask_add( struct im_connection *ic, const char *handle, const char *realname );
    260273
    261274/* Buddy management */
     
    263276 * user, usually after a login, or if the user added a buddy and the IM
    264277 * server confirms that the add was successful. Don't forget to do this! */
    265 G_MODULE_EXPORT void imcb_add_buddy( struct im_connection *ic, const char *handle, const char *group );
    266 G_MODULE_EXPORT void imcb_remove_buddy( struct im_connection *ic, const char *handle, char *group );
     278G_MODULE_EXPORT void imcb_add_buddy( struct im_connection *ic, char *handle, char *group );
     279G_MODULE_EXPORT void imcb_remove_buddy( struct im_connection *ic, char *handle, char *group );
    267280G_MODULE_EXPORT struct buddy *imcb_find_buddy( struct im_connection *ic, char *handle );
    268 G_MODULE_EXPORT void imcb_rename_buddy( struct im_connection *ic, const char *handle, const char *realname );
     281G_MODULE_EXPORT void imcb_rename_buddy( struct im_connection *ic, char *handle, char *realname );
    269282G_MODULE_EXPORT void imcb_buddy_nick_hint( struct im_connection *ic, char *handle, char *nick );
    270283
     
    277290/* Not implemented yet! */ G_MODULE_EXPORT void imcb_buddy_times( struct im_connection *ic, const char *handle, time_t login, time_t idle );
    278291/* Call when a handle says something. 'flags' and 'sent_at may be just 0. */
    279 G_MODULE_EXPORT void imcb_buddy_msg( struct im_connection *ic, const char *handle, char *msg, uint32_t flags, time_t sent_at );
     292G_MODULE_EXPORT void imcb_buddy_msg( struct im_connection *ic, char *handle, char *msg, uint32_t flags, time_t sent_at );
    280293G_MODULE_EXPORT void imcb_buddy_typing( struct im_connection *ic, char *handle, uint32_t flags );
    281294G_MODULE_EXPORT void imcb_clean_handle( struct im_connection *ic, char *handle );
     
    290303 *   user, too. */
    291304G_MODULE_EXPORT struct groupchat *imcb_chat_new( struct im_connection *ic, const char *handle );
    292 G_MODULE_EXPORT void imcb_chat_add_buddy( struct groupchat *b, const char *handle );
     305G_MODULE_EXPORT void imcb_chat_add_buddy( struct groupchat *b, char *handle );
    293306/* To remove a handle from a group chat. Reason can be NULL. */
    294 G_MODULE_EXPORT void imcb_chat_remove_buddy( struct groupchat *b, const char *handle, const char *reason );
     307G_MODULE_EXPORT void imcb_chat_remove_buddy( struct groupchat *b, char *handle, char *reason );
    295308/* To tell BitlBee 'who' said 'msg' in 'c'. 'flags' and 'sent_at' can be 0. */
    296 G_MODULE_EXPORT void imcb_chat_msg( struct groupchat *c, const char *who, char *msg, uint32_t flags, time_t sent_at );
     309G_MODULE_EXPORT void imcb_chat_msg( struct groupchat *c, char *who, char *msg, uint32_t flags, time_t sent_at );
    297310/* System messages specific to a groupchat, so they can be displayed in the right context. */
    298311G_MODULE_EXPORT void imcb_chat_log( struct groupchat *c, char *format, ... ) G_GNUC_PRINTF( 2, 3 );
Note: See TracChangeset for help on using the changeset viewer.