Location:
btmanclient.h
Link against: btmanclient.lib
class TBTRegistrySearch;
Set search criteria on the Bluetooth Registry.
The search logic is "AND", so if device bonded is set, and code set to headsets the search results contain all the bonded headsets in the registry.
Other things can be added to the search criteria e.g. recently used headsets can easil be found by adding in the LastUsed criterion.
Defined in TBTRegistrySearch
:
FindAddress()
, FindAll()
, FindBluetoothName()
, FindBonded()
, FindCoD()
, FindCoD()
, FindCurrentProcessOwned()
, FindFriendlyName()
, FindSinceSeen()
, FindSinceUsed()
, FindTrusted()
, Reset()
, TBTRegistrySearch()
, TBTRegistrySearch()
, operator=()
IMPORT_C TBTRegistrySearch(const TBTRegistrySearch &aSearch);
Copy Constructor
|
IMPORT_C void FindAddress(const TBTDevAddr &aAddress);
Add search criterion to search for given device
|
IMPORT_C void FindCoD(const TBTDeviceClass &aClass);
Add search criterion to search for specific CoD
|
IMPORT_C void FindCoD(const TBTDeviceClass &aClass, TBTDeviceClassSearch aPref);
Add search criterion to search for certain classes of device
|
IMPORT_C void FindSinceSeen(const TTime &aLastSeen);
Add search criterion to search for devices seen since given date NOTE not currently implemented
|
IMPORT_C void FindSinceUsed(const TTime &aLastUsed);
Add search criterion to search for devices used since given date
|
IMPORT_C void FindBluetoothName(const TDesC8 &aName);
Add search criteria of specific Bluetooth name
|
IMPORT_C void FindFriendlyName(const TDesC &aName);
Add search criterion to search for devices with some friendly name
|
IMPORT_C void FindCurrentProcessOwned();
Add search criterion to search for devices added by the current process
IMPORT_C TBTRegistrySearch &operator=(const TBTRegistrySearch &aSearch);
Assignment operator
|
|