ACMDRVSTREAMSIZE

This structure contains information needed by an ACM driver to respond to an ACMDM_STREAM_SIZE message.

Syntax

typedef struct {
DWORD
cbStruct;
DWORD
fdwSize;
DWORD
cbSrcLength;
DWORD
cbDstLength;
} ACMDRVSTREAMSIZE;

Members

cbStruct
Specifies the size, in bytes, of the ACMDRVSTREAMSIZE structure.
fdwSize
One of the following flags, indicating the query type:
ACM_STREAMSIZEF_SOURCE
Indicates that the client has specified the size, in bytes, of a source buffer in the cbSrcLength member. The driver returns the required destination buffer length in cbDstLength.
ACM_STREAMSIZEF_DESTINATION
Indicates that the client has specified the size, in bytes, of a destination buffer in the cbDstLength member. The driver returns the required source buffer length in cbSrcLength.
cbSrcLength
Specifies the size, in bytes, of the source buffer. The flag value specified in fdwSize indicates whether this value is supplied by the client or by the driver.
cbDstLength
Specifies the size, in bytes, of the destination buffer. The flag value specified in fdwSize indicates whether this value is supplied by the client or by the driver.

Remarks

This structure is declared in the Msacmdrv.h header file.