www.pudn.com > ÓïÒôAudioCap.rar > Data.h
#ifndef _DATA_H
#define _DATA_H
typedef struct
{
BYTE fccID[4]; /* should be "RIFF" */
DWORD dwFileSize; /* byte_number behind it *///=36 + DATA->dwSize
BYTE fccType[4]; /* should be "WAVE" */
BYTE fccFmt[4]; //should be 'fmt '
BYTE transition[4];//transition bytes
WORD wFormatTag;
WORD nChannels;
DWORD nSamplesPerSec;
DWORD nAvgBytesPerSec;
WORD nBlockAlign;
WORD wBitsPerSample;
BYTE fccFact[4]; //should be 'fact'
DWORD dwFactSize;
DWORD dwFactData;
BYTE fccData[4]; //should be 'data'
DWORD dwDataSize;
}WAVEFILEHEADER;
#endif