#include <win32/thpaudio.h>typedef struct
{
char fileName[_MAX_PATH];
FILE* fileHandle;
u32 frequency;
u32 channel;
u32 bitPerSample;
u32 totalSampleSize;
u32 dataBlockOffset;
u32 curFileOffset;
s32 formatType;
s32 type;
} THPAudioFileInfo;
The members of this structure are initialized based on information from the WAV file header when the THPAudioCreateHandle function is called.
2006/03/01 Initial version.
CONFIDENTIAL