Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 81457b38 authored by Chris Manton's avatar Chris Manton Committed by Automerger Merge Worker
Browse files

legacy: Add btm_client_interface::BTM_AddEirService am: 59e4d461

Original change: https://android-review.googlesource.com/c/platform/system/bt/+/1836463

Change-Id: Icddc07f525a52f74b8bdef754b5250325541d570
parents b05d0ce8 59e4d461
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -168,6 +168,7 @@ struct btm_client_interface_s btm_client_interface = {
        {
            .BTM_GetEirSupportedServices = BTM_GetEirSupportedServices,
            .BTM_GetEirUuidList = BTM_GetEirUuidList,
            .BTM_AddEirService = BTM_AddEirService,
            .BTM_RemoveEirService = BTM_RemoveEirService,
            .BTM_WriteEIR = BTM_WriteEIR,
        },
+1 −0
Original line number Diff line number Diff line
@@ -219,6 +219,7 @@ struct btm_client_interface_s {
    uint8_t (*BTM_GetEirUuidList)(uint8_t* p_eir, size_t eir_len,
                                  uint8_t uuid_size, uint8_t* p_num_uuid,
                                  uint8_t* p_uuid_list, uint8_t max_num_uuid);
    void (*BTM_AddEirService)(uint32_t* p_eir_uuid, uint16_t uuid16);
    void (*BTM_RemoveEirService)(uint32_t* p_eir_uuid, uint16_t uuid16);
  } eir;