bluetooth: Rename & expose parse_properties

This commit is contained in:
Denis Kenzior 2010-06-17 05:30:25 -05:00
parent cfc9722b13
commit 6ba350cec5
2 changed files with 2 additions and 3 deletions

View File

@ -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;

View File

@ -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, ...);