Platform SDK: DirectX

CONST_DSBSTATUSFLAGS

Members of the CONST_DSBSTATUSFLAGS enumeration describe the status of a buffer and are returned by the DirectSoundBuffer.GetStatus method.

Enum CONST_DSBSTATUSFLAGS
    DSBSTATUS_BUFFERLOST = 2
    DSBSTATUS_LOOPING    = 4
    DSBSTATUS_PLAYING    = 1
End Enum
DSBSTATUS_BUFFERLOST
The buffer is lost and must be restored before it can be played or locked.
DSBSTATUS_LOOPING
The buffer is being looped. If this value is not set, the buffer stops when it reaches the end of the sound data. This value is always returned in combination with DSBSTATUS_PLAYING.
DSBSTATUS_PLAYING
The buffer is playing.