Connection manager on Windows Mobile which exposes an api ConnMgrQueryDetailedStatus.This api can be used to query all the avaialble connections on the device. Following code snippet shows how:
//Variable Declaration
CONNMGR_CONNECTION_DETAILED_STATUSĀ *pConnMgrDet;HRESULT hResult; DWORD dwBufferSize=0;//Code Snippet
hResult=ConnMgrQueryDetailedStatus(pConnMgrDet,&dwBufferSize);
Archive for March, 2007
Retrieving GPRS Enteries on WM 5 Device
Posted in Microsoft, Mobile Device, PDA, Pocket PC, Programming, Smart Phone, Windows Mobile on March 23, 2007 | Leave a Comment »
Wap configuration file and DMProcessConfigXML () can be used for retrieving existing GPRS settings on the device. This can be useful when you want to verify if the connection you added/removed was successfully installed or even for simply getting information regarding the existing connections. Following peice of code retreives the settings and stores it in [...]