You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
376 B

#pragma once
namespace dvl {
struct IDirectSoundBuffer {
virtual void Release() = 0;
virtual bool IsPlaying() = 0;
virtual void Play(int lVolume, int lPan) = 0;
virtual void Stop() = 0;
virtual int SetChunk(BYTE *fileData, DWORD dwBytes) = 0;
};
typedef IDirectSoundBuffer *LPDIRECTSOUNDBUFFER;
const auto DVL_ERROR_SUCCESS = 0L;
} // namespace dvl