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 structure defines the audio devices to be used for transmitting and receiving from the radio.

Syntax

typedef struct {
  DWORD 
cbSize;
  DWORD 
dwParams;
  DWORD 
dwTxDevice;
  DWORD 
dwRxDevice;
} RILAUDIODEVICEINFO;

Members

cbSize

Structure size, in bytes.

dwParams

Specifies valid parameters. Must be one or a combination of the RILAUDIODEVICEINFOparameter constants.

dwTxDevice

Stores data for the transmit device. This value is only valid if RIL_PARAM_ADI_TXDEVICE or RIL_PARAM_ADI_ALL is specified in dwParams. RIL_AUDIO_HANDSET and RIL_AUDIO_NONE are the only supported values.

dwRxDevice

Stores data for the receive device. This value is only valid if RIL_PARAM_ADI_RXDEVICE or RIL_PARAM_ADI_ALL is specified in dwParams. RIL_AUDIO_HANDSET and RIL_AUDIO_NONE are the only supported values.

Remarks

This structure is implemented by RIL_GetAudioDevicesand RIL_SetAudioDevices.

Requirements

Header ril.h
Windows Embedded CE Windows CE .NET 4.2 and later

See Also