BluetoothSdpGetAttributeValue function bluetooth

int BluetoothSdpGetAttributeValue(
  1. Pointer<Uint8> pRecordStream,
  2. int cbRecordLength,
  3. int usAttributeId,
  4. Pointer<SDP_ELEMENT_DATA> pAttributeData
)

The BluetoothSdpGetAttributeValue function retrieves the attribute value for an attribute identifier.

DWORD BluetoothSdpGetAttributeValue(
  [in]  LPBYTE            pRecordStream,
  [in]  ULONG             cbRecordLength,
  [in]  USHORT            usAttributeId,
  [out] PSDP_ELEMENT_DATA pAttributeData
);

Implementation

int BluetoothSdpGetAttributeValue(
        Pointer<Uint8> pRecordStream,
        int cbRecordLength,
        int usAttributeId,
        Pointer<SDP_ELEMENT_DATA> pAttributeData) =>
    _BluetoothSdpGetAttributeValue(
        pRecordStream, cbRecordLength, usAttributeId, pAttributeData);