X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=blobdiff_plain;f=account_cbs.pxd;h=e2c2d7b99dcce93436dfc5ad0d374a8b6e3f1bba;hp=e0f767ad77945cde6ed57f07b521a0298127e015;hb=bd2d05ae6e1d133cd48429a25ff3dbce9c949571;hpb=75837780a72525b0df66ca1e30a215b2fbdcb887 diff --git a/account_cbs.pxd b/account_cbs.pxd index e0f767a..e2c2d7b 100644 --- a/account_cbs.pxd +++ b/account_cbs.pxd @@ -24,33 +24,44 @@ cdef extern from *: account_cbs = {} -cdef void notify_added (account.PurpleAccount *account, const_char *remote_user, const_char *id, const_char *alias, const_char *message): - debug.c_purple_debug(debug.PURPLE_DEBUG_INFO, "account", "notify_added\n") - global account_cbs +cdef void notify_added (account.PurpleAccount *account, + const_char *remote_user, const_char *id, + const_char *alias, const_char *message): + debug.c_purple_debug(debug.PURPLE_DEBUG_INFO, "account", + "notify_added\n") try: (account_cbs["notify_added"])("notify_added") except KeyError: pass -cdef void status_changed (account.PurpleAccount *account, status.PurpleStatus *status): - debug.c_purple_debug(debug.PURPLE_DEBUG_INFO, "account", "status_changed\n") - global account_cbs +cdef void status_changed (account.PurpleAccount *account, + status.PurpleStatus *status): + debug.c_purple_debug(debug.PURPLE_DEBUG_INFO, "account", + "status_changed\n") try: (account_cbs["status_changed"])("status_changed") except KeyError: pass -cdef void request_add (account.PurpleAccount *account, const_char *remote_user, const_char *id, const_char *alias, const_char *message): - debug.c_purple_debug(debug.PURPLE_DEBUG_INFO, "account", "request_add\n") - global account_cbs +cdef void request_add (account.PurpleAccount *account, + const_char *remote_user, const_char *id, + const_char *alias, const_char *message): + debug.c_purple_debug(debug.PURPLE_DEBUG_INFO, "account", + "request_add\n") try: (account_cbs["request_add"])("request_add") except KeyError: pass -cdef void *request_authorize (account.PurpleAccount *account, const_char *remote_user, const_char *id, const_char *alias, const_char *message, glib.gboolean on_list, account.PurpleAccountRequestAuthorizationCb authorize_cb, account.PurpleAccountRequestAuthorizationCb deny_cb, void *user_data): - debug.c_purple_debug(debug.PURPLE_DEBUG_INFO, "account", "request_authorize\n") - global account_cbs +cdef void *request_authorize (account.PurpleAccount *account, + const_char *remote_user, const_char *id, + const_char *alias, const_char *message, + glib.gboolean on_list, + account.PurpleAccountRequestAuthorizationCb authorize_cb, + account.PurpleAccountRequestAuthorizationCb deny_cb, + void *user_data): + debug.c_purple_debug(debug.PURPLE_DEBUG_INFO, "account", + "request_authorize\n") try: (account_cbs["request_authorize"])("request_authorize") return NULL @@ -58,8 +69,8 @@ cdef void *request_authorize (account.PurpleAccount *account, const_char *remote pass cdef void close_account_request (void *ui_handle): - debug.c_purple_debug(debug.PURPLE_DEBUG_INFO, "account", "close_account_request\n") - global account_cbs + debug.c_purple_debug(debug.PURPLE_DEBUG_INFO, "account", + "close_account_request\n") try: (account_cbs["close_account_request"])("close_account_request") except KeyError: