summaryrefslogtreecommitdiff
path: root/android/map-client.c
diff options
context:
space:
mode:
authorGrzegorz Kolodziejczyk <grzegorz.kolodziejczyk@tieto.com>2014-10-15 16:27:57 +0200
committerSzymon Janc <szymon.janc@tieto.com>2014-10-20 14:40:39 +0200
commit8d42d400759c7ce9033bbc96552ad5a14bbf06e1 (patch)
tree95bf8039f95ac294c2bc24a81d506d54218a9b55 /android/map-client.c
parenta848ceb0721d9e405f9326441b1958e289c6e81f (diff)
downloadbluez-8d42d400759c7ce9033bbc96552ad5a14bbf06e1.tar.gz
android/map-client: Add initial files
This adds initial daemon code for MAP client profile.
Diffstat (limited to 'android/map-client.c')
-rw-r--r--android/map-client.c44
1 files changed, 44 insertions, 0 deletions
diff --git a/android/map-client.c b/android/map-client.c
new file mode 100644
index 000000000..455646166
--- /dev/null
+++ b/android/map-client.c
@@ -0,0 +1,44 @@
+/*
+ *
+ * BlueZ - Bluetooth protocol stack for Linux
+ *
+ * Copyright (C) 2014 Intel Corporation. All rights reserved.
+ *
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <stdbool.h>
+#include <stdlib.h>
+#include <stdint.h>
+
+#include "ipc.h"
+#include "lib/bluetooth.h"
+#include "map-client.h"
+
+bool bt_map_client_register(struct ipc *ipc, const bdaddr_t *addr, uint8_t mode)
+{
+ return false;
+}
+
+void bt_map_client_unregister(void)
+{
+
+}