Share via


PHONEEVENT (Compact 2013)

3/26/2014

This type is a callback function implemented by TAPI and supplied to the service provider as a parameter to the TSPI_phoneOpen function. The service provider calls this function to report events that occur on the phone.

Syntax

PHONEEVENT Phone_Event; 
void(
CALLBACK *Phone_Event)(
  HTAPIPHONE htPhone,
  DWORD dwMsg,
  DWORD dwParam1,
  DWORD dwParam2,
  DWORD dwParam3 
);

Parameters

  • htPhone
    TAPI handle for the phone on which the event occurred.
  • dwMsg
    Value that specifies the kind of event that is being reported. Interpretation of the other parameters is done in different ways according to the context indicated by dwMsg.
  • dwParam1
    A parameter for the message.
  • dwParam2
    A parameter for the message.
  • dwParam3
    A parameter for the message.

Return Value

None.

Remarks

The call state when calling this function can be any state.

The service provider passes the HTAPIPHONE value supplied to TSPI_phoneOpen as the htPhone parameter. It includes the message identifier and parameters specific to the event.

The sets of messages that can be passed to this procedure differ slightly from the messages to the corresponding callback at the TAPI level. In particular, completion of asynchronously executing requests is reported through the ASYNC_COMPLETION callback instead of this one.

Requirements

Header

tspi.h

Library

CellTSP.dll

See Also

Reference

TSPI Callback Functions
TSPI_phoneOpen
ASYNC_COMPLETION