www.BCB-Tools.com
Home of
RAD DirectX
for
C++ Builder
...
...
Please Register
So we can
create more
the TDx_Library
the TDx9_Library
|
GLOSSARY
REFERENCE
Below you will find the glossary reference for 'WAVEFORMATEX'
|
|
If you would like to submit additions or improvements to this page, click: admin@bcb-tools.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;
|
|