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