com.IBM.WirelessClient.API
Interface eWirelessAPIListener


public interface eWirelessAPIListener

The eWirelessAPIListener interface is defined here. This interface provides api users with a way of receiving asynchronous api events. API users should implement this interface and call the method addWirelessAPIListener() to register the implementation


Method Summary
 void eMsg_AdapterInitialized(eInterfaceHandle theInterfaceHandle, java.lang.String theInterfaceName)
          This event contains the results of a call to the eOpenInterface function and indicates that the modem or network device has been successfully initialized.
 void eMsg_AdapterResetInProgress(eInterfaceHandle theInterfaceHandle)
          This event Indicates that the network adapter has encountered an error and is attempting to reset itself.
 void eMsg_BatteryMode(eInterfaceHandle theInterfaceHandle, int theReturnCode, int theBatteryMode)
          This event contains the results of a call to the eSetBatteryMode or the eGetBatteryMode methods.
 void eMsg_BatteryStrength(eInterfaceHandle theInterfaceHandle, int theReturnCode, int theNormalizedStrength, int theRawStrength)
          This event contains the results of a call to the GetBatteryStrength method.
 void eMsg_ChangePassword(int theReturnCode)
          This event contains the results of a call to the eChangePassword method.
 void eMsg_CloseInterface(eInterfaceHandle theInterfaceHandle, int theReturnCode)
          This event contains the results of a call to the eCloseInterface method.
 void eMsg_ConnectionInfo(int theReturnCode, eConnectionInfo theConnectionInfo)
          This event contains the results of a call to the eGetConnectionInfo method.
 void eMsg_DisableTransmitter(eInterfaceHandle theInterfaceHandle, int theReturnCode)
          This event contains the results of a call to the eDisableTransmitter method.
 void eMsg_EnableTransmitter(eInterfaceHandle theInterfaceHandle, int theReturnCode)
          This event contains the results of a call to the eEnableTransmitter method.
 void eMsg_HardwareEvent(eInterfaceHandle theInterfaceHandle, int theEventID)
          This event is used only by the DataTAC/PMR network driver.
 void eMsg_Logoff(int theReturnCode)
          This event contains the results of a call to the eLogoff method.
 void eMsg_Logon(int theReturnCode, java.lang.String theConnectionConfigName)
          This event contains the results of a call to the eLogon method.
 void eMsg_NetworkAdapters(eInterfaceHandle theInterfaceHandle, int theReturnCode, eNetworkAdapters theAdapters)
           
 void eMsg_NetworkCapabilities(eInterfaceHandle theInterfaceHandle, int theReturnCode, eNetworkCapabilities theNetworkCapabilities)
          This event contains the results of a call to the eGetNetworkCapabilities method.
 void eMsg_NetworkCongested(eInterfaceHandle theInterfaceHandle)
          This event indicates that the modem has reported that the network is congested or that the modem buffers are full.
 void eMsg_NetworkInRange(eInterfaceHandle theInterfaceHandle)
          This event indicates that the modem is now in range of the network.
 void eMsg_NetworkMessage(eInterfaceHandle theInterfaceHandle, java.lang.String theNetworkMessage)
          This event is used only for DataTAC/PMR networks.
 void eMsg_NetworkNoLongerCongested(eInterfaceHandle theInterfaceHandle)
          This event indicates that the modem has reported that the network is no longer congested.
 void eMsg_NetworkOutOfRange(eInterfaceHandle theInterfaceHandle)
          This event indicates that the modem is now out of range of the network and cannot send or receive data.
 void eMsg_NetworkSpecific(eInterfaceHandle theInterfaceHandle, int theReturnCode, int theNetworkCapabilities, java.lang.String theNetworkSpecificMessage)
           This event contains the results of a call to the eGetNetworkSpecific method.
 void eMsg_NetworkStatus(eInterfaceHandle theInterfaceHandle, int theReturnCode, eNetworkStatus theNetworkStatus)
          This event contains the results of a call to the eGetNetworkStatus method.
 void eMsg_NotifyTray(eInterfaceHandle theInterfaceHandle, int theReturnCode)
           
 void eMsg_OpenInterface(eInterfaceHandle theInterfaceHandle, int theReturnCode, int theNetworkSpecificRC, java.lang.String theInterfaceName)
          This event contains the results of a call to the eOpenInterface method.
 void eMsg_PacketReceived(eInterfaceHandle theInterfaceHandle, int thePacketSize)
          This event indicates that the Wireless Client has received a packet.
 void eMsg_PacketReceiveFailed(eInterfaceHandle theInterfaceHandle, int theReturnCode, int packetSize)
          This event indicates that the Wireless Client encountered a error receiving a packet.
 void eMsg_PacketTransmitFailed(eInterfaceHandle theInterfaceHandle, int theReturnCode, int packetSize)
          This event indicates that the Wireless Client encountered an error transmitting a packet.
 void eMsg_PacketTransmitted(eInterfaceHandle theInterfaceHandle, int thePacketSize)
          This event indicates that the Wireless Client has sent a packet to the network.
 void eMsg_RadiusAuthentication(eInterfaceHandle theInterfaceHandle, int theReturnCode)
          This event contains the results of a call to the eAuthenticate method.
 void eMsg_RedialAttempt(eInterfaceHandle theInterfaceHandle, int theReturnCode)
          This event indicates that the Wireless Client is redialing the network, possibley as the result of a call to the eSendRedialMessage method.
 void eMsg_ResumeInterface(eInterfaceHandle theInterfaceHandle, int theReturnCode)
          This event contains the results of a call to the eResumeInterface method./p>
 void eMsg_RFModemStatistics(eInterfaceHandle theInterfaceHandle, int theReturnCode, eRFModemStatistics theRFModemStatistics)
          This event contains the results of a call to the eGetRFModemStatistics method.
 void eMsg_RFModemStatus(eInterfaceHandle theInterfaceHandle, int theReturnCode, eRFModemStatus theRFModemStatus)
          This event contains the results of a call to the eGetRFModemStatus method.
 void eMsg_SetActiveInterface(eInterfaceHandle theInterfaceHandle, int theReturnCode, eInterfaceHandle theNewActiveInterface, eInterfaceHandle theOldActiveInterface)
          This event contains a return code indicating success or failure for the eSetActiveInterface attempt, the interface handle that was active prior to the call, and the new active interface handle (if the operation was successful).
 void eMsg_Shutdown()
          This event indicates that the Wireless Client executable is no longer running.
 void eMsg_SignalQuality(eInterfaceHandle theInterfaceHandle, int theReturnCode, int theNormalizedQuality, int theRawQuality)
          This event contains the results of a call to the GetSignalQuality method.
 void eMsg_SignalStrength(eInterfaceHandle theInterfaceHandle, int theReturnCode, int theNormalizedStrength, int theRawStrength)
          This event contains the results of a call to the GetSignalStrength method.
 void eMsg_SuspendInterface(eInterfaceHandle theInterfaceHandle, int theReturnCode)
          This event contains the results of a call to the eSuspendInterface method.
 

Method Detail

eMsg_AdapterInitialized

public void eMsg_AdapterInitialized(eInterfaceHandle theInterfaceHandle,
                                    java.lang.String theInterfaceName)

This event contains the results of a call to the eOpenInterface function and indicates that the modem or network device has been successfully initialized. This event marks an intermediate step in the connection process. The next step in the connection process is to attempt to communicate with the network.

Because not all networks support this event, applications can ignore it and wait for the concluding eMsg_OpenInterface event. This event is not posted if the modem cannot be initialized; instead, the eMsg_OpenInterface event is posted with a return code of eErrModemInitFailed

Parameters:
theInterfaceHandle - Interface to which this event relates
theInterfaceName - Contains the string interfaceName passed in on the associated eOpenInterface call.
See Also:
eWirelessAPI.eOpenInterface(String, String, eInterfaceHandle)

eMsg_AdapterResetInProgress

public void eMsg_AdapterResetInProgress(eInterfaceHandle theInterfaceHandle)

This event Indicates that the network adapter has encountered an error and is attempting to reset itself. This event should be followed by an eOpenInterface event indicating the success or failure of the attempt.

Parameters:
theInterfaceHandle - Interface to which this event relates

eMsg_BatteryMode

public void eMsg_BatteryMode(eInterfaceHandle theInterfaceHandle,
                             int theReturnCode,
                             int theBatteryMode)

This event contains the results of a call to the eSetBatteryMode or the eGetBatteryMode methods.

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK
  • eErrFailed
  • eErrNotSupported
theBatteryMode -
  • eEXPRESS
  • eSAVER
  • eUNKNOWNMODE
See Also:
eWirelessAPI.eGetBatteryMode(eInterfaceHandle), eWirelessAPI.eSetBatteryMode(eInterfaceHandle, int)

eMsg_BatteryStrength

public void eMsg_BatteryStrength(eInterfaceHandle theInterfaceHandle,
                                 int theReturnCode,
                                 int theNormalizedStrength,
                                 int theRawStrength)

This event contains the results of a call to the GetBatteryStrength method.

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK
  • eErrFailed
  • eErrNotSupported
theNormalizedStrength - Contains the normalized battery strength value (on a 0-100 scale).
theRawStrength - Contains the actual battery strength value returned by the modem.
See Also:
eWirelessAPI.eGetBatteryStrength(eInterfaceHandle)

eMsg_ChangePassword

public void eMsg_ChangePassword(int theReturnCode)

This event contains the results of a call to the eChangePassword method.

Parameters:
theReturnCode -
  • eOK - password was changed
  • eErrBadState - the client is not logged on
  • eErrPassword - The current password specified in the eChangePassword call is not valid.
  • eErrForceRadiusAuthentication
  • eInvalidNewPassword
  • eErrFailed
See Also:
eWirelessAPI.eChangePassword(String, String)

eMsg_CloseInterface

public void eMsg_CloseInterface(eInterfaceHandle theInterfaceHandle,
                                int theReturnCode)

This event contains the results of a call to the eCloseInterface method.

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK
  • eErrFailed
  • eErrNotSupported
See Also:
eWirelessAPI.eCloseInterface(eInterfaceHandle)

eMsg_ConnectionInfo

public void eMsg_ConnectionInfo(int theReturnCode,
                                eConnectionInfo theConnectionInfo)

This event contains the results of a call to the eGetConnectionInfo method.

Parameters:
theReturnCode -
  • eOK
  • eErrFailed
theConnectionInfo - An eConnectionInfo object containing the connection info returned as a result of the call to eGetConnectionInfo
See Also:
eWirelessAPI.eGetConnectionInfo(), eConnectionInfo

eMsg_DisableTransmitter

public void eMsg_DisableTransmitter(eInterfaceHandle theInterfaceHandle,
                                    int theReturnCode)

This event contains the results of a call to the eDisableTransmitter method.

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK
  • eErrFailed
  • eErrNotSupported
See Also:
eWirelessAPI.eDisableTransmitter(eInterfaceHandle)

eMsg_EnableTransmitter

public void eMsg_EnableTransmitter(eInterfaceHandle theInterfaceHandle,
                                   int theReturnCode)

This event contains the results of a call to the eEnableTransmitter method.

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK
  • eErrFailed
  • eErrNotSupported
See Also:
eWirelessAPI.eEnableTransmitter(eInterfaceHandle)

eMsg_HardwareEvent

public void eMsg_HardwareEvent(eInterfaceHandle theInterfaceHandle,
                               int theEventID)

This event is used only by the DataTAC/PMR network driver. The modem has issued a hardware event.

Parameters:
theInterfaceHandle - Interface to which this event relates
theEventID -
  • ART_BATT_LOW
  • ART_BUFFER_FULL
  • ART_BATT_OK
  • ART_BUFF_OK
  • ART_HW_OFF
  • ART_UNKNOWN_HW_EV

eMsg_Logoff

public void eMsg_Logoff(int theReturnCode)

This event contains the results of a call to the eLogoff method.

Parameters:
theReturnCode -
  • eOK
  • eErrBadState - the client is not logged on
  • eErrNoActiveInterface
  • eErrTimeout
  • eErrFailed
See Also:
eWirelessAPI.eLogoff()

eMsg_Logon

public void eMsg_Logon(int theReturnCode,
                       java.lang.String theConnectionConfigName)

This event contains the results of a call to the eLogon method.

Parameters:
theReturnCode -
  • eOK
  • eErrBadState - the client is already logged on
  • eErrNoActiveInterface
  • eErrInvalidConfiguration - the stored configuration specified in the eLogon call is invalid
  • eErrForcePasswordChange
  • eErrPassword
  • eErrForceRadiusAuthentication
  • eErrTimeout
  • eErrFailed
  • eErrProtocol
  • eErrAuthorizationRequired
  • eErrGatewayDown
  • eErrAccountDeleted
  • eErrAccountUnknown
  • eErrAlreadyConnected
  • eErrOperator
  • eErrVersion
  • eErrAccountLocked
  • eErrAccountExpired
See Also:
eWirelessAPI.eLogon(String, String, String, String)

eMsg_NetworkCapabilities

public void eMsg_NetworkCapabilities(eInterfaceHandle theInterfaceHandle,
                                     int theReturnCode,
                                     eNetworkCapabilities theNetworkCapabilities)

This event contains the results of a call to the eGetNetworkCapabilities method.

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK
  • eErrFailed
  • eErrNotSupported
theNetworkCapabilities - An eNetworkCapabilities object containing the network capabilities
See Also:
eWirelessAPI.eGetNetworkCapabilities(eInterfaceHandle), eNetworkCapabilities

eMsg_NetworkCongested

public void eMsg_NetworkCongested(eInterfaceHandle theInterfaceHandle)

This event indicates that the modem has reported that the network is congested or that the modem buffers are full. Outgoing packets may be lost.

Parameters:
theInterfaceHandle - Interface to which this event relates

eMsg_NetworkInRange

public void eMsg_NetworkInRange(eInterfaceHandle theInterfaceHandle)

This event indicates that the modem is now in range of the network.

Parameters:
theInterfaceHandle - Interface to which this event relates

eMsg_NetworkMessage

public void eMsg_NetworkMessage(eInterfaceHandle theInterfaceHandle,
                                java.lang.String theNetworkMessage)

This event is used only for DataTAC/PMR networks. The network has delivered an unsolicited text message.

Parameters:
theInterfaceHandle - Interface to which this event relates
theNetworkMessage - The text message received from the network.

eMsg_NetworkNoLongerCongested

public void eMsg_NetworkNoLongerCongested(eInterfaceHandle theInterfaceHandle)

This event indicates that the modem has reported that the network is no longer congested. This event will be preceeded by an eMsg_NetworkCongested event.

Parameters:
theInterfaceHandle - Interface to which this event relates

eMsg_NetworkOutOfRange

public void eMsg_NetworkOutOfRange(eInterfaceHandle theInterfaceHandle)

This event indicates that the modem is now out of range of the network and cannot send or receive data.

Parameters:
theInterfaceHandle - Interface to which this event relates

eMsg_NetworkSpecific

public void eMsg_NetworkSpecific(eInterfaceHandle theInterfaceHandle,
                                 int theReturnCode,
                                 int theNetworkCapabilities,
                                 java.lang.String theNetworkSpecificMessage)

This event contains the results of a call to the eGetNetworkSpecific method.

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK
  • eErrFailed
  • eErrNotSupported
theNetworkCapabilities - This field contains a bit mask representing the operations this modem supports. The bit masks used are described in ART_CAPABILITY bit masks.
theNetworkSpecificMessage - String with the network-specific information in a displayable format. The string contents vary by network type.
See Also:
eWirelessAPI.eGetNetworkSpecific(eInterfaceHandle)

eMsg_NetworkStatus

public void eMsg_NetworkStatus(eInterfaceHandle theInterfaceHandle,
                               int theReturnCode,
                               eNetworkStatus theNetworkStatus)

This event contains the results of a call to the eGetNetworkStatus method.

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK
  • eErrFailed
  • eErrNotSupported
theNetworkStatus - An eNetworkStatus object containing the network status
See Also:
eWirelessAPI.eGetNetworkStatus(eInterfaceHandle), eNetworkStatus

eMsg_NotifyTray

public void eMsg_NotifyTray(eInterfaceHandle theInterfaceHandle,
                            int theReturnCode)

eMsg_OpenInterface

public void eMsg_OpenInterface(eInterfaceHandle theInterfaceHandle,
                               int theReturnCode,
                               int theNetworkSpecificRC,
                               java.lang.String theInterfaceName)

This event contains the results of a call to the eOpenInterface method.

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK - The physical link to the network has been established. The Wireless Client can now attempt to log on to the Wireless Gateway.
  • eErrModemInitFailed
theNetworkSpecificRC - If theReturnCode is not equal to eOK, this field may contain a network-specific return code. Check the network driver documentation for details on interpreting this field
theInterfaceName - Contains the string interfaceName passed in on the associated eOpenInterface call.
See Also:
eWirelessAPI.eOpenInterface(String, String,eInterfaceHandle)

eMsg_PacketReceived

public void eMsg_PacketReceived(eInterfaceHandle theInterfaceHandle,
                                int thePacketSize)

This event indicates that the Wireless Client has received a packet.

Parameters:
theInterfaceHandle - Interface to which this event relates
thePacketSize - Size (in bytes) of the packet that was received.

eMsg_PacketReceiveFailed

public void eMsg_PacketReceiveFailed(eInterfaceHandle theInterfaceHandle,
                                     int theReturnCode,
                                     int packetSize)

This event indicates that the Wireless Client encountered a error receiving a packet. The packet could have been corrupted, incomplete, or discarded by the network.

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -  
thePacketSize - Size (in bytes) of the packet

eMsg_PacketTransmitFailed

public void eMsg_PacketTransmitFailed(eInterfaceHandle theInterfaceHandle,
                                      int theReturnCode,
                                      int packetSize)

This event indicates that the Wireless Client encountered an error transmitting a packet. /p>

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -  
thePacketSize - Size (in bytes) of the packet

eMsg_PacketTransmitted

public void eMsg_PacketTransmitted(eInterfaceHandle theInterfaceHandle,
                                   int thePacketSize)

This event indicates that the Wireless Client has sent a packet to the network. /p>

Parameters:
theInterfaceHandle - Interface to which this event relates
thePacketSize - Size (in bytes) of the packet

eMsg_RadiusAuthentication

public void eMsg_RadiusAuthentication(eInterfaceHandle theInterfaceHandle,
                                      int theReturnCode)

This event contains the results of a call to the eAuthenticate method. /p>

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK
  • eErrForceRadiusAuthentication
  • eErrForcePasswordChange
  • eErrBadState
  • eErrNotInitialized
  • eErrInvalidParameter
  • eErrFailed
  • eErrPassword
See Also:
eWirelessAPI.eAuthenticate(String, String)

eMsg_RedialAttempt

public void eMsg_RedialAttempt(eInterfaceHandle theInterfaceHandle,
                               int theReturnCode)

This event indicates that the Wireless Client is redialing the network, possibley as the result of a call to the eSendRedialMessage method. /p>

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK
  • eOperationPending
  • eErrModemConnectFailed
See Also:
eWirelessAPI.eSendRedialMessage(eInterfaceHandle)

eMsg_ResumeInterface

public void eMsg_ResumeInterface(eInterfaceHandle theInterfaceHandle,
                                 int theReturnCode)

This event contains the results of a call to the eResumeInterface method./p>

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK
  • eErrTimeout - This value pertains only to Dial and GSM interfaces. A timeout occurred while trying to access the modem or phoneline.
  • eErrFailed
  • eErrNotSupported
See Also:
eWirelessAPI.eResumeInterface(eInterfaceHandle)

eMsg_SetActiveInterface

public void eMsg_SetActiveInterface(eInterfaceHandle theInterfaceHandle,
                                    int theReturnCode,
                                    eInterfaceHandle theNewActiveInterface,
                                    eInterfaceHandle theOldActiveInterface)

This event contains a return code indicating success or failure for the eSetActiveInterface attempt, the interface handle that was active prior to the call, and the new active interface handle (if the operation was successful). If the operation fails, the state of the current active interface is left unchanged./p>

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK - The operation was successful. The interface specified in theNewActiveInterface is now the active interface.
  • eErrTimeout - A timeout occurred. The interface specified in theOldActiveInterface remains the active interface.
  • eErrFailed - The operation failed. The interface specified in theOldActiveInterface remains the active interface.
    theNewActiveInterface - Contains the new active interface handle specified in the eSetActiveInterface call.
    theOldActiveInterface - Contains the name of the interface interface that was active prior to the call to eSetActiveInterface
    See Also:
    eWirelessAPI.eSetActiveInterface(eInterfaceHandle)

eMsg_Shutdown

public void eMsg_Shutdown()

This event indicates that the Wireless Client executable is no longer running. If you receive this event, you no longer have a valid handle to the API. To continue using the API, you will need to call eCloseAPI and the eOpenAPI method again to reinitialize the API and restart the Wireless Client./p>

See Also:
eWirelessAPI.eShutdown(), eWirelessAPI.eOpenApi(), eWirelessAPI.eCloseApi()

eMsg_SignalQuality

public void eMsg_SignalQuality(eInterfaceHandle theInterfaceHandle,
                               int theReturnCode,
                               int theNormalizedQuality,
                               int theRawQuality)

This event contains the results of a call to the GetSignalQuality method.

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK
  • eErrFailed
  • eErrNotSupported
theNormalizedQuality - Contains the normalized signal quality value (on a 0-100 scale).
theRawQuality - Contains the actual signal quality value returned by the modem.
See Also:
eWirelessAPI.eGetSignalQuality(eInterfaceHandle)

eMsg_SignalStrength

public void eMsg_SignalStrength(eInterfaceHandle theInterfaceHandle,
                                int theReturnCode,
                                int theNormalizedStrength,
                                int theRawStrength)

This event contains the results of a call to the GetSignalStrength method.

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK
  • eErrFailed
  • eErrNotSupported
theNormalizedStrength - Contains the normalized signal strength value (on a 0-100 scale).
theRawStrength - Contains the actual signal strength value returned by the modem.
See Also:
eWirelessAPI.eGetSignalStrength(eInterfaceHandle)

eMsg_SuspendInterface

public void eMsg_SuspendInterface(eInterfaceHandle theInterfaceHandle,
                                  int theReturnCode)

This event contains the results of a call to the eSuspendInterface method.

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK - The operation was successful. The connection has been suspended.
  • eErrTimeout - This value pertains only to Dial and GSM interfaces. A timeout occurred while trying to access the modem or phoneline.
  • eErrFailed
  • eErrNotSupported
See Also:
eWirelessAPI.eSuspendInterface(eInterfaceHandle)

eMsg_RFModemStatus

public void eMsg_RFModemStatus(eInterfaceHandle theInterfaceHandle,
                               int theReturnCode,
                               eRFModemStatus theRFModemStatus)

This event contains the results of a call to the eGetRFModemStatus method.

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK
  • eErrFailed
  • eErrNotSupported
  • eErrNotInitialized
theRFModemStatus - An eRFModemStatus object containing the RF modem status returned as a result of the call to eGetRFModemStatus
See Also:
eWirelessAPI.eGetRFModemStatus(eInterfaceHandle), eRFModemStatus

eMsg_RFModemStatistics

public void eMsg_RFModemStatistics(eInterfaceHandle theInterfaceHandle,
                                   int theReturnCode,
                                   eRFModemStatistics theRFModemStatistics)

This event contains the results of a call to the eGetRFModemStatistics method.

Parameters:
theInterfaceHandle - Interface to which this event relates
theReturnCode -
  • eOK
  • eErrFailed
  • eErrNotSupported
  • eErrNotInitialized
theRFModemStatus - An eRFModemStatistics object containing the RF modem statistics returned as a result of the call to eGetRFModemStatistics
See Also:
eWirelessAPI.eGetRFModemStatistics(eInterfaceHandle), eRFModemStatistics

eMsg_NetworkAdapters

public void eMsg_NetworkAdapters(eInterfaceHandle theInterfaceHandle,
                                 int theReturnCode,
                                 eNetworkAdapters theAdapters)