AUDIODESCRIPTION structure (winuser.h)

Contains information associated with audio descriptions. This structure is used with the SystemParametersInfo function when the SPI_GETAUDIODESCRIPTION or SPI_SETAUDIODESCRIPTION action value is specified.

Syntax

typedef struct tagAUDIODESCRIPTION {
  UINT cbSize;
  BOOL Enabled;
  LCID Locale;
} AUDIODESCRIPTION, *LPAUDIODESCRIPTION;

Members

cbSize

The size of the structure, in bytes. The caller must set this member to sizeof(AUDIODESCRIPTION).

Enabled

If this member is TRUE, audio descriptions are enabled; Otherwise, this member is FALSE.

Locale

The locale identifier (LCID) of the language for the audio description. For more information, see Locales and Languages.

Remarks

To compile an application that uses this structure, define _WIN32_WINNT as 0x0600 or later. For more information, see Using the Windows Headers.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Header winuser.h (include Windows.h)

See also

SystemParametersInfo