summaryrefslogtreecommitdiff
path: root/gobex/gobex.h
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@intel.com>2011-08-30 12:30:39 +0300
committerMarcel Holtmann <marcel@holtmann.org>2012-12-04 22:22:02 +0100
commite12802a76b6a26d7556be8392aa9af75b8e983c5 (patch)
tree2c1882c84531a3324b800d7a9c419181dd4e4c6e /gobex/gobex.h
parent971be76c6295eddaf30ddb812a75a379440a29d2 (diff)
downloadbluez-e12802a76b6a26d7556be8392aa9af75b8e983c5.tar.gz
gobex: Add Action command convenience functions
Diffstat (limited to 'gobex/gobex.h')
-rw-r--r--gobex/gobex.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/gobex/gobex.h b/gobex/gobex.h
index a8424f32e..e210e7954 100644
--- a/gobex/gobex.h
+++ b/gobex/gobex.h
@@ -82,6 +82,14 @@ guint g_obex_mkdir(GObex *obex, const char *path, GObexResponseFunc func,
guint g_obex_delete(GObex *obex, const char *name, GObexResponseFunc func,
gpointer user_data, GError **err);
+guint g_obex_copy(GObex *obex, const char *name, const char *dest,
+ GObexResponseFunc func, gpointer user_data,
+ GError **err);
+
+guint g_obex_move(GObex *obex, const char *name, const char *dest,
+ GObexResponseFunc func, gpointer user_data,
+ GError **err);
+
/* Transfer related high-level functions */
guint g_obex_put_req(GObex *obex, GObexDataProducer data_func,