Startsupplicant(), Stopsupplicant(), Switchpacketdriver() – Intermec 751G User Manual

Page 110

Advertising
background image

Chapter 3 — Configuring the Computer

96

751G Color Mobile Computer User’s Manual

StartSupplicant()

Call this to start the supplicant service if it is installed on the system.

StopSupplicant()

Call this function to stop the supplicant service.

SwitchPacketDriver()

Call this function to switch between available packet drivers on the system.

Syntax

UINT StartSupplicant( );

Parameters

None.

Return Values ERROR_SUCCESS when successful.

Remarks

None.

Definitions

#ifdef DYNAMIC_LOADING
typedef UINT (*PFN_StartSupplicant)();
#else
UINT StartSupplicant();
#endif

Syntax

UINT StopSupplicant( );

Parameters

None.

Return Values ERROR_SUCCESS when successful.

Remarks

None.

Definitions

#ifdef DYNAMIC_LOADING
typedef UINT (*PFN_StopSupplicant)();
#else
UINT StopSupplicant();
#endif

Syntax

UINT SwitchPacketDriver( USHORT );

Parameters

INTERMEC_PACKET_DRIVER Intermec Packet Driver (ZNICZIO)

NDISUIO_PACKET_DRIVER

Microsoft Packet Driver (NDISUIO)

Return Values ERROR_SUCCESS when successful.

Remarks

After switching to a new packet driver, perform a warm boot for changes to take effect.

Definitions

#ifdef DYNAMIC_LOADING
typedef UINT (*PFN_SwitchPacketDriver)(USHORT);
#else
UINT SwitchPacketDriver(USHORT);
#endif

Advertising