BluetoothSdpGetElementData function bluetooth

int BluetoothSdpGetElementData(
  1. Pointer<Uint8> pSdpStream,
  2. int cbSdpStreamLength,
  3. Pointer<SDP_ELEMENT_DATA> pData
)

The BluetoothSdpGetElementData function retrieves and parses a single element from an SDP stream.

DWORD BluetoothSdpGetElementData(
  [in]  LPBYTE            pSdpStream,
  [in]  ULONG             cbSdpStreamLength,
  [out] PSDP_ELEMENT_DATA pData
);

Implementation

int BluetoothSdpGetElementData(Pointer<Uint8> pSdpStream, int cbSdpStreamLength,
        Pointer<SDP_ELEMENT_DATA> pData) =>
    _BluetoothSdpGetElementData(pSdpStream, cbSdpStreamLength, pData);