Welcome to
www.tdxlibrary.org
Home of the
the TDx_Library...
"RAD DirectX"
for
C++ Builder
...
|
GLOSSARY
REFERENCE
Below you will find the glossary reference for 'WAVEFORMATEX'
|
|
If you would like to submit additions or improvements to this page, click: darren_john_dwyer@hotmail.com.
WAVEFORMATEX
[ TDx_Sound_Library ]
[ next: Write Cursor ]
[ prev: Velocity ]
The WAVEFORMATEX structure is a Win32 structure which is used to describe the format of a sound.
The structure definition contained in the DirectSound section of the DirectX SDK is:
typedef struct
{
WORD wFormatTag;
WORD nChannels;
DWORD nSamplesPerSec;
DWORD nAvgBytesPerSec;
WORD nBlockAlign;
WORD wBitsPerSample;
WORD cbSize;
} WAVEFORMATEX;
|
|