# # Copyright (c) 2008 INdT - Instituto Nokia de Tecnologia # # This file is part of python-purple. # # python-purple is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # python-purple is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # cimport purple cdef extern from *: ctypedef char const_char "const char" 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") 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") 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") try: (account_cbs["request_authorize"])("request_authorize") return NULL except KeyError: pass cdef void close_account_request (void *ui_handle): debug.c_purple_debug(debug.PURPLE_DEBUG_INFO, "account", "close_account_request\n") try: (account_cbs["close_account_request"])("close_account_request") except KeyError: pass