did it myself... cant delete before 3 days...

s3eFile *fileHandle = s3eFileOpen("hit.raw", "rb");
static int32 g_FileSize = s3eFileGetSize(fileHandle);
void *g_SoundData = s3eMallocBase(g_FileSize);
memset(g_SoundData, 0, g_FileSize);
s3eFileRead(g_SoundData, g_FileSize, 1, fileHandle);
s3eFileClose(fileHandle);
int g_Channel = s3eSoundGetFreeChannel();
//s3eSoundChannelRegister(g_Channel, S3E_CHANNEL_END_SAMPLE, &test, NULL);
s3eSoundSetInt(S3E_SOUND_DEFAULT_FREQ, 8000);

play

 s3eSoundChannelPlay(g_Channel, (int16 *)g_SoundData, g_FileSize/2, 0, 0);
link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.