BluetoothSdpGetContainerElementData function bluetooth

int BluetoothSdpGetContainerElementData(
  1. Pointer<Uint8> pContainerStream,
  2. int cbContainerLength,
  3. Pointer<IntPtr> pElement,
  4. Pointer<SDP_ELEMENT_DATA> pData,
)

The BluetoothSdpGetContainerElementData function iterates a container stream and returns each element contained within the container element.

DWORD BluetoothSdpGetContainerElementData(
  [in]      LPBYTE                       pContainerStream,
  [in]      ULONG                        cbContainerLength,
  [in, out] HBLUETOOTH_CONTAINER_ELEMENT *pElement,
  [out]     PSDP_ELEMENT_DATA            pData
);

Implementation

int BluetoothSdpGetContainerElementData(
        Pointer<Uint8> pContainerStream,
        int cbContainerLength,
        Pointer<IntPtr> pElement,
        Pointer<SDP_ELEMENT_DATA> pData) =>
    _BluetoothSdpGetContainerElementData(
        pContainerStream, cbContainerLength, pElement, pData);