comparison libpurple/dbus-analyze-functions.py @ 26947:750f087d1df3

Exclude some get/set UI/protocol data functions from dbus. I don't see how these could function properly.
author Paul Aurich <paul@darkrain42.org>
date Sun, 10 May 2009 23:33:36 +0000
parents 2520d5fe48a3
children 5afee99de904 b168718d1072
comparison
equal deleted inserted replaced
26945:10d92c213d0f 26947:750f087d1df3
28 28
29 # Similar to the above: 29 # Similar to the above:
30 "purple_account_set_register_callback", 30 "purple_account_set_register_callback",
31 "purple_account_unregister", 31 "purple_account_unregister",
32 "purple_connection_new_unregister", 32 "purple_connection_new_unregister",
33
34 # These functions are excluded because they involve setting arbitrary
35 # data via pointers for protocols and UIs. This just won't work.
36 "purple_blist_get_ui_data",
37 "purple_blist_set_ui_data",
38 "purple_blist_node_get_ui_data",
39 "purple_blist_node_set_ui_data",
40 "purple_buddy_get_protocol_data",
41 "purple_buddy_set_protocol_data",
33 42
34 # This is excluded because this script treats PurpleLogReadFlags* 43 # This is excluded because this script treats PurpleLogReadFlags*
35 # as pointer to a struct, instead of a pointer to an enum. This 44 # as pointer to a struct, instead of a pointer to an enum. This
36 # causes a compilation error. Someone should fix this script. 45 # causes a compilation error. Someone should fix this script.
37 "purple_log_read", 46 "purple_log_read",