Virtual Wave Driver v1.0

ReadStream

Property ReadStream As Variant
Read/Write: Read only

Description

Read this property to obtain the raw audio stream.

Remarks

This property can be read within the event of OnStreamData only.

Code sample:

Private Sub VirtualOutSrc_OnStreamData(ByVal cbSize As Long, ByVal pAddress As Long)
  Dim var As Variant
  var = VirtualOutSrc.ReadStream
  ... 
  Debug.Print TypeName(var) 
End Sub

See Also

OnStreamData