summaryrefslogtreecommitdiffstats
path: root/common/glib-helper.h
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.dentz@openbossa.org>2008-11-06 16:12:16 -0300
committerLuiz Augusto von Dentz <luiz.dentz@openbossa.org>2008-11-06 16:12:16 -0300
commit054f044588ee84c300b11ef4d94ddc55fe170539 (patch)
tree59ea0fd443b353101454fbebc375115c69000bac /common/glib-helper.h
parent0cd6d963d0fed972434f6d0cec0448c99bee87cb (diff)
Rename bt_string2class to bt_name2class and introduce bt_name2string.
Since bt_string2class didn't work for UUID128 in string format the name got changed to be more suggestive. bt_name2string was introduced to prevent potential use of bt_string2uuid followed with bt_uuid2string which turns to do the same conversion twice.
Diffstat (limited to 'common/glib-helper.h')
-rw-r--r--common/glib-helper.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/glib-helper.h b/common/glib-helper.h
index ee63b2d7..794d296c 100644
--- a/common/glib-helper.h
+++ b/common/glib-helper.h
@@ -38,7 +38,8 @@ int bt_search_service(const bdaddr_t *src, const bdaddr_t *dst,
int bt_cancel_discovery(const bdaddr_t *src, const bdaddr_t *dst);
gchar *bt_uuid2string(uuid_t *uuid);
-uint16_t bt_string2class(const char *string);
+uint16_t bt_name2class(const char *string);
+char *bt_name2string(const char *string);
int bt_string2uuid(uuid_t *uuid, const char *string);
gchar *bt_list2string(GSList *list);
GSList *bt_string2list(const gchar *str);