diff options
author | Denis Kenzior <denkenz@gmail.com> | 2010-06-17 05:30:25 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2010-06-17 05:32:29 -0500 |
commit | 6ba350cec5724b81ccc4175a11785c02abea9a88 (patch) | |
tree | c300379bb7f6c3c3c01330b693dfa04e307efe4d | |
parent | cfc9722b137e8b835a4583ae2b459b0eb86c0dd1 (diff) | |
download | ofono-6ba350cec5724b81ccc4175a11785c02abea9a88.tar.bz2 |
bluetooth: Rename & expose parse_properties
-rw-r--r-- | plugins/bluetooth.c | 3 | ||||
-rw-r--r-- | plugins/bluetooth.h | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/plugins/bluetooth.c b/plugins/bluetooth.c index abed1e96..0b1b5601 100644 --- a/plugins/bluetooth.c +++ b/plugins/bluetooth.c @@ -132,8 +132,7 @@ static gint property_handler_compare(gconstpointer a, gconstpointer b) return strcmp(handler->property, property); } -static void parse_properties_reply(DBusMessage *reply, - const char *property, ...) +void bluetooth_parse_properties(DBusMessage *reply, const char *property, ...) { va_list args; GSList *prop_handlers = NULL; diff --git a/plugins/bluetooth.h b/plugins/bluetooth.h index 43cca995..fb0d841f 100644 --- a/plugins/bluetooth.h +++ b/plugins/bluetooth.h @@ -48,4 +48,4 @@ int bluetooth_send_with_reply(const char *path, const char *interface, DBusPendingCallNotifyFunction cb, void *user_data, DBusFreeFunction free_func, int timeout, int type, ...); - +void bluetooth_parse_properties(DBusMessage *reply, const char *property, ...); |