|
|
|
|
|
tapiCapability (Function) In french: telCapacité Returns the characteristics of a telephony device. Allows you to find out whether this device supports all types of incoming calls, the voice calls and the faxes. IF BitwiseAND(tapiCapability("LTP2"), tapiOptionMediaModeVoice) = tapiOptionMediaModeVoice THEN
Info("Voix gérée")
END
IF BitwiseAND(tapiCapability("LTP2"), tapiOptionMediaModeFax) = tapiOptionMediaModeFax THEN
Info("Fax géré")
END
Syntax
<Result> = tapiCapability(<Device name>)
<Result>: Integer or integer constant - 0 if an error occurs,
- one or more of the following constants:
| | tapiOptionMediaModeFax | Device accepting the faxes | tapiOptionMediaModeUnknown | Device accepting the incoming calls of unknown type. | tapiOptionMediaModeVoice | Device accepting the voice calls. Note: Fax modems enabling automation dialing can return this constant. |
<Device name>: Character string Name of the device to use. The list of telephony devices is returned by tapiDeviceList. Remarks Required configuration Telephony functions use TAPI 2.0 technology and/or TAPI 3.1 technology. These technologies can be used on all systems.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|