home *** CD-ROM | disk | FTP | other *** search
/ Microsoft DirectX SDK 7.0 / Dx7.bin / DXF / samples / multimedia / vbsamples / dsound / src / memo / globals.bas < prev    next >
Encoding:
BASIC Source File  |  1999-06-11  |  750 b   |  32 lines

  1. Attribute VB_Name = "Globals"
  2. Public dx As New DirectX7
  3.  
  4. 'dsound
  5. Public ds As DirectSound
  6. Public dsb As DirectSoundBuffer
  7. Public dsb2 As DirectSoundBuffer
  8. Public DSBD As DSBUFFERDESC
  9. Public w As WAVEFORMATEX
  10. Public hlDBUFF() As Integer
  11.  
  12. 'dscapture
  13. Public dsc As DirectSoundCapture
  14. Public dscb As DirectSoundCaptureBuffer
  15. Public dc As DSCBUFFERDESC
  16. Public wc As WAVEFORMATEX
  17.  
  18. Public HLDFROMDB As String
  19. Public hold() As Integer
  20. Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (destination As Any, source As Any, ByVal Length As Long)
  21. Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
  22.  
  23.  
  24. Public D As Integer
  25. Public M As String
  26. Public Y As Integer
  27.  
  28. Global MEMO_RECORD As Boolean
  29.  
  30.  
  31.  
  32.