X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=blobdiff_plain;f=libpurple%2Faccount.pxd;h=0cfd6f70e01970464c077e44c33db134cd806eae;hp=841f0c6dacbc08c7e8b35594eb40b8f1ee80b082;hb=808298462331613626bf941f55b4118295e92824;hpb=f159e4e85c40eec62070f297af3fd54646dba4b0 diff --git a/libpurple/account.pxd b/libpurple/account.pxd index 841f0c6..0cfd6f7 100644 --- a/libpurple/account.pxd +++ b/libpurple/account.pxd @@ -17,17 +17,26 @@ # along with this program. If not, see . # +cimport glib + 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" () + 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)