AUXCAPSW structure (mmeapi.h)
The AUXCAPS structure describes the capabilities of an auxiliary output device.
Syntax
typedef struct tagAUXCAPSW {
WORD wMid;
WORD wPid;
MMVERSION vDriverVersion;
WCHAR szPname[MAXPNAMELEN];
WORD wTechnology;
WORD wReserved1;
DWORD dwSupport;
} AUXCAPSW, *PAUXCAPSW, *NPAUXCAPSW, *LPAUXCAPSW;
Members
wMid
Manufacturer identifier for the device driver for the auxiliary audio device. Manufacturer identifiers are defined in Manufacturer and Product Identifiers.
wPid
Product identifier for the auxiliary audio device. Currently, no product identifiers are defined for auxiliary audio devices.
vDriverVersion
Version number of the device driver for the auxiliary audio device. The high-order byte is the major version number, and the low-order byte is the minor version number.
szPname[MAXPNAMELEN]
Product name in a null-terminated string.
wTechnology
Type of the auxiliary audio output:
Name | Description |
---|---|
|
Audio output from auxiliary input jacks. |
|
Audio output from an internal CD-ROM drive. |
wReserved1
dwSupport
Describes optional functionality supported by the auxiliary audio device.
Name | Description |
---|---|
|
Supports separate left and right volume control. |
|
Supports volume control. |
If a device supports volume changes, the AUXCAPS_VOLUME flag will be set. If a device supports separate volume changes on the left and right channels, both AUXCAPS_VOLUME and the AUXCAPS_LRVOLUME will be set.
Remarks
Note
The mmeapi.h header defines AUXCAPS as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Header | mmeapi.h (include Windows.h) |