Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This message is sent to the LINEEVENTcallback function to notify TAPI about device-specific events occurring on a line or address. The meaning of the message and the interpretation of the dwParam1 through dwParam3 parameters is device specific.

Syntax

LINE_DEVSPECIFIC

htLine = (HTAPILINE) 
hLineDevice;

htCall = (HTAPICALL) 0;

dwMsg = (DWORD) LINE_DEVSPECIFIC;

dwParam1 = (DWORD) 
DeviceData1;

dwParam2 = (DWORD) 
DeviceData2;

dwParam3 = (DWORD) 
DeviceData3;

Parameters

htLine

The TAPI opaque object handle to the line device.

htCall

Not used.

dwMsg

The value LINE_DEVSPECIFIC.

dwParam1

Device specific.

dwParam2

Device specific.

dwParam3

Device specific.

Remarks

This message is used by a service provider in conjunction with the TSPI_lineDevSpecificfunction. Its meaning is device specific.

TAPI sends the LINE_DEVSPECIFIC message to applications in response to receiving this message from a service provider. The htLineis translated to the appropriate hLineas the hDeviceparameter at the TAPI level. The dwParam1, dwParam2, and dwParam3parameters are passed through unmodified.

This differs from the corresponding message at the TAPI level in that it is used only to report device-specific events occurring on a line or address.

Requirements

Header tapi.h
Windows Embedded CE Windows CE 3.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also