THPAudioFileInfo

C Specification

#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;

Description

The members of this structure are initialized based on information from the WAV file header when the THPAudioCreateHandle function is called.

See Also

THPAudioCreateHandle

Revision History

2006/03/01 Initial version.


CONFIDENTIAL