# HG changeset patch # User Paul Aurich # Date 1241998416 0 # Node ID 750f087d1df39f18347a116316db77e2ace857f0 # Parent 10d92c213d0f8f97a504b929f063b90a4cd6fe21 Exclude some get/set UI/protocol data functions from dbus. I don't see how these could function properly. diff -r 10d92c213d0f -r 750f087d1df3 libpurple/dbus-analyze-functions.py --- a/libpurple/dbus-analyze-functions.py Sun May 10 22:41:13 2009 +0000 +++ b/libpurple/dbus-analyze-functions.py Sun May 10 23:33:36 2009 +0000 @@ -31,6 +31,15 @@ "purple_account_unregister", "purple_connection_new_unregister", + # These functions are excluded because they involve setting arbitrary + # data via pointers for protocols and UIs. This just won't work. + "purple_blist_get_ui_data", + "purple_blist_set_ui_data", + "purple_blist_node_get_ui_data", + "purple_blist_node_set_ui_data", + "purple_buddy_get_protocol_data", + "purple_buddy_set_protocol_data", + # This is excluded because this script treats PurpleLogReadFlags* # as pointer to a struct, instead of a pointer to an enum. This # causes a compilation error. Someone should fix this script.