comparison libpurple/dbus-analyze-functions.py @ 31077:37c9f6020c35

Stop translating gpointer to int in the dbus API. This has the effect of removing a number of functions from the API, which probably shouldn't have been there in the first place. Fixes #12507. committer: John Bailey <rekkanoryo@rekkanoryo.org>
author opensuse-project@opensuse.org
date Tue, 28 Dec 2010 11:34:19 +0000
parents cb74b2877ea7
children bf65d24d84ae 3828a61c44da
comparison
equal deleted inserted replaced
31076:25bbabd11c91 31077:37c9f6020c35
1 import re 1 import re
2 import string 2 import string
3 import sys 3 import sys
4 4
5 # types translated into "int" 5 # types translated into "int"
6 simpletypes = ["int", "gint", "guint", "gboolean", "gpointer", "size_t", "gssize", "time_t"] 6 simpletypes = ["int", "gint", "guint", "gboolean", "size_t", "gssize", "time_t"]
7 7
8 # List "excluded" contains functions that shouldn't be exported via 8 # List "excluded" contains functions that shouldn't be exported via
9 # DBus. If you remove a function from this list, please make sure 9 # DBus. If you remove a function from this list, please make sure
10 # that it does not break "make" with the configure option 10 # that it does not break "make" with the configure option
11 # "--enable-dbus" turned on. 11 # "--enable-dbus" turned on.