CONST_DSBPLAYFLAGS
The CONST_DSBPLAYFLAGS enumeration is used in flags parameter of the DirectSoundBuffer.Play method to specify how to play the buffer.
Enum CONST_DSBPLAYFLAGS
DSBPLAY_DEFAULT = 0
DSBPLAY_LOOPING = 1
End Enum
- DSBPLAY_DEFAULT
- Play from the current play position to the end of the audio buffer.
- DSBPLAY_LOOPING
- Play from the current play position to the end of the buffer, and restart at the beginning of the buffer. Play continues until explicitly stopped.