1 2 #ifndef ACI_L2CAP_NWK_H 3 #define ACI_L2CAP_NWK_H 4 5 void aci_l2cap_cos_sdu_data_rx_nwk_event(uint16_t Connection_Handle, 6 uint16_t CID, 7 uint16_t RX_Credit_Balance, 8 uint16_t SDU_Length, 9 uint8_t SDU_Data[]); 10 11 void aci_l2cap_cos_sdu_data_tx_nwk_event(uint16_t Connection_Handle, 12 uint16_t CID, 13 uint16_t SDU_Length, 14 uint16_t TX_Credit_Balance); 15 16 #endif 17