--- android/ipc.c | 5 +++++ android/ipc.h | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/android/ipc.c b/android/ipc.c index 8cd34ea..fc58a1c 100644 --- a/android/ipc.c +++ b/android/ipc.c @@ -40,6 +40,11 @@ #include "ipc.h" #include "src/log.h" +struct service_handler { + const struct ipc_handler *handler; + uint8_t size; +}; + struct ipc { struct service_handler *services; int service_max; diff --git a/android/ipc.h b/android/ipc.h index cc4e92d..e97f0e6 100644 --- a/android/ipc.h +++ b/android/ipc.h @@ -27,11 +27,6 @@ struct ipc_handler { size_t data_len; }; -struct service_handler { - const struct ipc_handler *handler; - uint8_t size; -}; - struct ipc; typedef void (*ipc_disconnect_cb) (void *data); -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html