Share via


BthNsLookupServiceNext (Compact 2013)

3/26/2014

This function retrieves the results of a Service Discovery Protocol (SDP) search.

Syntax

INT BthNsLookupServiceNext(
  HANDLE hLookup,
  DWORD dwFlags,
  LPDWORD lpdwBufferLength,
  LPWSAQUERYSET pResults
);

Parameters

  • dwFlags
    [in] Control flags for the next operation. The following table shows the flags that are supported for a device inquiry.

    Flag

    Description

    LUP_RETURN_NAME

    Performs a name inquiry and sets the results in the pResults->lpszServiceInstanceName element.

    LUP_RETURN_ADDR

    Returns the address of the enumerated remote device in pResults->lpcsaBuffer->RemoteAddr.lpSockaddr.

    LUP_RETURN_BLOB

    Returns a BthInquiryResult structure in pResults->lpBlob->pBlobData.

    BTHNS_LUP_RESET_ITERATOR

    Resets the list enumeration. No data is returned during this call.

    The next call to this function retrieves information about the first device in the enumeration list.

    BTHNS_LUP_NO_ADVANCE

    If this flag is not set, the next item in the list is enumerated on the next call to this function.

    If this flag is set, the next call to this function returns information about the same remote device.

  • lpdwBufferLength
    [in, out] On input, contains the number of bytes in the buffer that pResults points to. On output, contains the minimum number of bytes the pResults parameter uses to retrieve the record, assuming the function fails and the error is BthNsEFAULT.
  • pResults
    [out] Points to a block of memory where the result set is stored as a WSAQUERYSET structure on return.

Return Value

If the operation was successful, the return value is zero. Otherwise, the value SOCKET_ERROR is returned. The specific error number can be retrieved by calling the WSAGetLastError function.

Remarks

Note

To preserve Win32 compatibility, consider using the Winsock equivalent of this function, WSALookupServiceNext.

The data returned when the LUP_RETURN_ADDR and LUP_RETURN_BLOB flags are set is determined during the initial inquiry in BthNsLookupServiceBegin, and BthNsLookupServiceNext can retrieve it quickly because it is stored in memory.

BthNsLookupServiceBegin does not perform name inquiries because they take considerably more time than simple device discovery. Name inquiry is only done on a given device if the LUP_RETURN_NAME flag is set when the device is enumerated.

Reset the enumeration iteration list by setting the BTHNS_LUP_RESET_ITERATOR flag. If you want to enumerate the same item multiple times with different flags, you can do so by setting the BTHNS_LUP_NO_ADVANCE flag.

An application can move through the list of devices once, with repeated calls to BthNsLookupServiceNext. The application determines the remote addresses, resets the iteration list, and queries for a subset of device names by calling this function with the LUP_RETURN_NAME flag set.

BthNsLookupServiceNext can be used to display a list of queried devices in a user interface. The addresses can be displayed while the application queries for the device names in the background. Each time a new name is determined, the display can be updated.

Service Searching

Results from a service search are returned in the lpBlob member of pResults in raw-binary format. The entire results are returned at once, instead of requiring enumeration for multiple service records.

Because the raw SDP format is difficult to parse and requires knowledge of the SDP specification, a COM interface is provided to transform the octal data into a tree that can be easily manipulated.

Querying for Devices

After calling this function, each device that was matched in the call to BthNsLookupServiceBegin is enumerated one at a time. After the last device in the list is enumerated, the next call to this function returns SOCKET_ERROR, and the last error is set to WSA_E_NO_MORE, unless dwFlags is set to BTHNS_LUP_RESET_ITERATOR.

Requirements

Header

bt_api.h

Library

Btdrt.lib

See Also

Reference

Bluetooth API Service Discovery Functions
BthInquiryResult
BthNsLookupServiceEnd