Renewdhcp(), Resetradiotosystemsave(), Startscanlist() – Intermec 751G User Manual

Page 109

Advertising
background image

Chapter 3 — Configuring the Computer

751G Color Mobile Computer User’s Manual

95

RenewDHCP()

Call this to force a DHCP renewal on the current network adapter.

ResetRadioToSystemSave()

Call this function to force the radio to reset to the last desired active profile.

StartScanList()

If a scan list is configured on the system, this causes the API to begin the
process of scanning for an available network. This call can take quite a
while to process (depending upon the length of the scan list and how long it
takes to find a valid network)
, you may wish to call it from a separate thread.

Syntax

UINT RenewDHCP( );

Parameters

None.

Return Values ERROR_SUCCESS when successful.

Remarks

You should not have to call this function on Microsoft Windows CE 4.2
.NET and later devices.

Definitions

#ifdef DYNAMIC_LOADING
typedef UINT (*PFN_RenewDHCP)();
#else
UINT RenewDHCP();
#endif

Syntax

UINT ResetRadioToSystemSave( );

Parameters

None.

Return Values ERROR_SUCCESS when successful.

Remarks

None.

Definitions

#ifdef DYNAMIC_LOADING
typedef UINT (*PFN_ResetRadioToSystemSave)();
#else
UINT ResetRadioToSystemSave();
#endif

Syntax

UINT StartScanList( );

Parameters

None.

Return Values ERROR_SUCCESS when successful.

Remarks

Call this function to start the scan list functionality of the system.

Definitions

#ifdef DYNAMIC_LOADING
typedef UINT (*PFN_StartScanList)();
#else
UINT StartScanList();
#endif

Advertising