X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=blobdiff_plain;f=libpurple%2Faccount.pxd;h=c2600651c6dc916c9f962a08fdf1b4bb6a7d894c;hp=841f0c6dacbc08c7e8b35594eb40b8f1ee80b082;hb=ac030f57dba92333b91c7c282eedc1e1b1b1b9dd;hpb=f159e4e85c40eec62070f297af3fd54646dba4b0 diff --git a/libpurple/account.pxd b/libpurple/account.pxd index 841f0c6..c260065 100644 --- a/libpurple/account.pxd +++ b/libpurple/account.pxd @@ -17,17 +17,40 @@ # along with this program. If not, see . # +cimport glib +cimport proxy + cdef extern from "libpurple/account.h": ctypedef struct PurpleAccount: - pass + char *username + char *alias + char *password + char *user_info + char *buddy_icon_path + glib.gboolean remember_pass + char *protocol_id ctypedef struct PurpleAccountUiOps: pass - PurpleAccount *c_purple_account_new "purple_account_new" (const_char_ptr username, const_char_ptr protocol_id) - void c_purple_account_set_password "purple_account_set_password" (PurpleAccount *account, const_char_ptr password) - const_char_ptr c_purple_account_get_password "purple_account_get_password" (PurpleAccount *account) - void c_purple_account_set_enabled "purple_account_set_enabled" (PurpleAccount *account, const_char_ptr ui, gboolean value) - const_char_ptr c_purple_account_get_username "purple_account_get_username" (PurpleAccount *account) - GList *c_purple_accounts_get_all_active "purple_accounts_get_all_active" () - void c_purple_accounts_set_ui_ops "purple_accounts_set_ui_ops" (PurpleAccountUiOps *ops) + PurpleAccount *c_purple_account_new "purple_account_new" \ + (char *username, char *protocol_id) + void c_purple_account_set_password "purple_account_set_password" \ + (PurpleAccount *account, char *password) + char *c_purple_account_get_password "purple_account_get_password" \ + (PurpleAccount *account) + void c_purple_account_set_enabled "purple_account_set_enabled" \ + (PurpleAccount *account, char *ui, glib.gboolean value) + char *c_purple_account_get_username "purple_account_get_username" \ + (PurpleAccount *account) + glib.GList *c_purple_accounts_get_all_active \ + "purple_accounts_get_all_active" () + void c_purple_accounts_set_ui_ops "purple_accounts_set_ui_ops" \ + (PurpleAccountUiOps *ops) + glib.gboolean c_purple_account_is_connected "purple_account_is_connected" \ + (PurpleAccount *account) + proxy.PurpleProxyInfo *c_purple_account_get_proxy_info \ + "purple_account_get_proxy_info" (PurpleAccount *account) + void c_purple_account_set_proxy_info "purple_account_set_proxy_info" \ + (PurpleAccount *account, proxy.PurpleProxyInfo *info) +