diff options
author | Dan Albert <danalbert@google.com> | 2015-02-18 19:21:54 +0100 |
---|---|---|
committer | Dan Albert <danalbert@google.com> | 2015-02-18 19:21:54 +0100 |
commit | d808d2194f7a71309545bfcf111e874fb97bfd6b (patch) | |
tree | 0e2117efa62822997d9ecfd6a7fbaed380b17547 /minadbd/adb.h | |
parent | Merge "Fix Droid and animation color in recovery mode" (diff) | |
download | android_bootable_recovery-d808d2194f7a71309545bfcf111e874fb97bfd6b.tar android_bootable_recovery-d808d2194f7a71309545bfcf111e874fb97bfd6b.tar.gz android_bootable_recovery-d808d2194f7a71309545bfcf111e874fb97bfd6b.tar.bz2 android_bootable_recovery-d808d2194f7a71309545bfcf111e874fb97bfd6b.tar.lz android_bootable_recovery-d808d2194f7a71309545bfcf111e874fb97bfd6b.tar.xz android_bootable_recovery-d808d2194f7a71309545bfcf111e874fb97bfd6b.tar.zst android_bootable_recovery-d808d2194f7a71309545bfcf111e874fb97bfd6b.zip |
Diffstat (limited to '')
-rw-r--r-- | minadbd/adb.h | 8 |
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 |