hi, group
I'm trying connect the Nokia 7650 to a bluetooth device programatically,
without the interact of the user.
This is the code for searching bluetooth devices:
********************************
_LIT8(emtac,"EMTAC BTGPS"
TInt fin=0;
TRequestStatus status;
TInquirySockAddr addr;
TProtocolDesc pInfo;
RHostResolver hr;
User::WaitForRequest(status);
while (iServiceSearcher->iName.Compare(emtac)==0 && fin
!=KErrHostResNoMoreResults)
{
fin = hr.Next(iServiceSearcher->iName);
}
after that i don't Know what I must do.
I think that i must find the bluetooth service but I don't know How.
Please any Help???
Thx in advance ;-)