mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@21 3b4a5df2-a311-0410-b5c6-a8a6f20db521
22 lines
460 B
C++
22 lines
460 B
C++
#ifndef __GAP_H
|
|
#define __GAP_H
|
|
|
|
#include "faces.h"
|
|
|
|
typedef UINT8 AudioSample8;
|
|
typedef INT16 AudioSample16;
|
|
|
|
|
|
|
|
void AudioGapListInit( CHAR8 *zSoundFile, AudioGapList *pGapList );
|
|
void AudioGapListDone( AudioGapList *pGapList );
|
|
|
|
void PollAudioGap( UINT32 uiSampleNum, AudioGapList *pGapList );
|
|
|
|
|
|
UINT32 PlayJA2GapSample( CHAR8 *zSoundFile, UINT32 usRate, UINT32 ubVolume, UINT32 ubLoops, UINT32 uiPan, AudioGapList* pData );
|
|
|
|
|
|
|
|
#endif
|