X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=blobdiff_plain;f=libpurple%2Faccount.pxd;h=964c21d937431bb8656a786a4dcbb0da85dfe37a;hp=841f0c6dacbc08c7e8b35594eb40b8f1ee80b082;hb=d88947735d2c204731d80ae6513aeea7463a6e87;hpb=f159e4e85c40eec62070f297af3fd54646dba4b0 diff --git a/libpurple/account.pxd b/libpurple/account.pxd index 841f0c6..964c21d 100644 --- a/libpurple/account.pxd +++ b/libpurple/account.pxd @@ -17,17 +17,20 @@ # along with this program. If not, see . # +cimport glib + cdef extern from "libpurple/account.h": ctypedef struct PurpleAccount: - pass + char *username 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)