home *** CD-ROM | disk | FTP | other *** search
/ Spanish Scene 4 / SpanishScene4.iso / Programas / DDominguez_Ind / PlaySidDevBas.lha / BH / playsid.bh < prev   
Text File  |  2000-07-02  |  2KB  |  51 lines

  1. ' *********************************************************************
  2. '          playsid.library 1.x (1.7.94) by Hâkan Sundell & Ron Birk
  3. '               HBASIC functions/subroutines 1.0.0 (1.7.00)
  4. '
  5. '                   C->HBASIC manual '8-) conversion
  6. '               © Dámaso D. Estévez <amidde@arrakis.es>
  7. ' *********************************************************************
  8. '              Please read the comments/remarks included
  9. '   in clib/playsid_protos.h and library/playsid#?.(h|i) files and
  10. '                    the documentation for coders
  11. '             (all included in the library dev package).
  12. '      ----------------------------------------------------------
  13. '   Por favor, lea los comentarios/notas incluidas en los ficheros
  14. '           clib/playsid_protos.h y library/playsid#?.(h|i)
  15. '             y en la documentación para programadores
  16. '     (todo ello incluido en el paquete para desarrolladores).
  17. ' *********************************************************************
  18. '              This file include as remark the arguments
  19. '                      required for each routine.
  20. '    ---------------------------------------------------------------
  21. '          Este fichero incluye como comentario los argumentos
  22. '                     requeridos por cada rutina.
  23. ' *********************************************************************
  24.  
  25. REM $underlines
  26.  
  27. REM $include playsid.bc
  28.  
  29. LIBRARY DECLARE "playsid.library"
  30.  
  31. DECLARE FUNCTION AllocEmulResource& LIBRARY
  32. DECLARE SUB      FreeEmulResource   LIBRARY
  33. DECLARE FUNCTION ReadIcon&          LIBRARY ' filename&, header&
  34. DECLARE FUNCTION CheckModule&       LIBRARY ' header&
  35. DECLARE SUB      SetModule          LIBRARY ' header&, fileLocation&, fileLength&
  36. DECLARE FUNCTION StartSong&         LIBRARY ' tune&
  37. DECLARE SUB      StopSong           LIBRARY
  38. DECLARE SUB      PauseSong          LIBRARY
  39. DECLARE FUNCTION ContinueSong       LIBRARY
  40. DECLARE SUB      ForwardSong        LIBRARY ' speed&
  41. DECLARE SUB      RewindSong         LIBRARY ' speed&
  42. DECLARE SUB      SetVertFreq        LIBRARY ' frequency&
  43. DECLARE SUB      SetChannelEnable   LIBRARY ' flags&
  44. DECLARE SUB      SetReverseEnable   LIBRARY ' flag&
  45.  
  46. ' ---------------------------------------------
  47. '    The private functions wasn't included
  48. ' Las funciones privadas no han sido incluidas
  49. ' ---------------------------------------------
  50.  
  51.