summaryrefslogtreecommitdiffstats
path: root/minadbd/adb.h
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-02-18 23:57:06 +0100
committerAndroid Git Automerger <android-git-automerger@android.com>2015-02-18 23:57:06 +0100
commitecb0ad25c6be87570f31b652c24ff7f17a93813f (patch)
tree5cfb9d0bb8f07baf70bcc0094a19c232434f239a /minadbd/adb.h
parentam ff934d02: Merge "Fix Droid and animation color in recovery mode" (diff)
parentMerge "Add extern "C" to all the headers." (diff)
downloadandroid_bootable_recovery-ecb0ad25c6be87570f31b652c24ff7f17a93813f.tar
android_bootable_recovery-ecb0ad25c6be87570f31b652c24ff7f17a93813f.tar.gz
android_bootable_recovery-ecb0ad25c6be87570f31b652c24ff7f17a93813f.tar.bz2
android_bootable_recovery-ecb0ad25c6be87570f31b652c24ff7f17a93813f.tar.lz
android_bootable_recovery-ecb0ad25c6be87570f31b652c24ff7f17a93813f.tar.xz
android_bootable_recovery-ecb0ad25c6be87570f31b652c24ff7f17a93813f.tar.zst
android_bootable_recovery-ecb0ad25c6be87570f31b652c24ff7f17a93813f.zip
Diffstat (limited to 'minadbd/adb.h')
-rw-r--r--minadbd/adb.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/minadbd/adb.h b/minadbd/adb.h
index 714868f5c..010a36485 100644
--- a/minadbd/adb.h
+++ b/minadbd/adb.h
@@ -22,6 +22,10 @@
#include "transport.h" /* readx(), writex() */
#include "fdevent.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
#define MAX_PAYLOAD 4096
#define A_SYNC 0x434e5953
@@ -421,4 +425,8 @@ extern int SHELL_EXIT_NOTIFY_FD;
int sendfailmsg(int fd, const char *reason);
int handle_host_request(char *service, transport_type ttype, char* serial, int reply_fd, asocket *s);
+#ifdef __cplusplus
+}
+#endif
+
#endif