A device class is a group of related physical devices or device drivers through which applications send and receive the information or data that makes up a call. Every device class has a device class name that uniquely identifies the class and provides information about the programming interface and commands that can be used to open and communicate with the devices in the class.
The Telephony Application Programming Interface (TAPI) associates devices from one or more device classes to each line or phone device. You access one of these devices by retrieving the device identifier for the device using the lineGetID or phoneGetID function. You supply the device class name, and the function returns the specific port name, device name, device handle, or device identifier that you need to open and access the device. The format of the returned information depends on the device class and is described in this section.
Note The device identifier definitions apply to 16-bit and 32-bit TAPI. In some cases, the datatype of a media handle in the device identifier definition may be different from that specified by the Microsoft Windows version 3.x or Microsoft Win32 application programming interface (API). For example, Windows 3.x and Win32 define wave device identifiers with the UINT type, but TAPI defines this device identifier with the DWORD type. In such cases, you cast the media handle to the appropriate datatype when using it with the Windows version 3.x or Win32 API.
You also use device class names with the lineConfigDialog and phoneConfigDialog functions to enable the user to set configuration options for the given device; with the lineGetIcon and phoneGetIcon functions to retrieve an icon to represent the given device; and with the lineGetDevConfig and lineSetDevConfig functions to directly retrieve and set configuration options for the given device.
Following are the default device class names.
Device Class Name | Description |
---|---|
comm | Communications port |
comm/datamodem | Modem through a communications port |
comm/datamodem/portname | Name of the device to which a modem is connected |
wave/in | Wave audio device (input only) |
wave/out | Wave audio device (output only) |
midi/in | Midi sequencer (input only) |
midi/out | Midi sequencer (output only) |
tapi/line | Line device |
tapi/phone | Phone device |
ndis | Network device |
tapi/terminal | Terminal device |
These names are not case sensitive, so you can use any combination of uppercase and lowercase letters.
Additional device classes and device class names may be available on a given system. In general, if a device does not belong to one of the default device classes, the manufacturer typically defines a new device class and assigns a unique device class name. You must check the documentation for the device to determine what additional device classes are available for it. Note, however, that although the device class and media mode are related, they are not the same. A media mode describes a format of information on a call, and a device class defines the programming interface used to manage that information. So, even if a manufacturer defines a new media mode, it may not be true that the manufacturer must also define a new device class to support the mode.
The format of the configuration data used with the lineSetDevConfig and lineGetDevConfig functions also depends on the device class. In general, you use lineGetDevConfig to save a copy of the current device configuration data and then later use lineSetDevConfig with the saved configuration data to restore the device configuration to the previous state. This is a convenient way to temporarily change the configuration without requiring the user to manually restore it to the previous state. Because the exact format of the device configuration data may be different with each service provider, do not use lineSetDevConfig and lineGetDevConfig to manipulate the device configuration data directly. Some formats are provided for information only.