Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. //
  2. //   This file is part of the AC97 mp3 player.
  3. //   (C) copyright Serge 2006
  4. //   email: infinity_sound@mail.ru
  5. //
  6. //   This program is free software; you can redistribute it and/or modify
  7. //   it under the terms of the GNU General Public License as published by
  8. //   the Free Software Foundation; either version 2 of the License, or
  9. //   (at your option) any later version.
  10. //
  11. //   This program is distributed in the hope that it will be useful,
  12. //   but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. //   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. //   GNU General Public License for more details.
  15.  
  16.  
  17. #define ST_DONE  0x0
  18. #define ST_PLAY  0x1
  19. #define ST_EXIT  0x2
  20. #define ST_STOP  0x4
  21. #define ST_TRACK 0x5
  22.  
  23.  
  24. DWORD test_mp3(char *buf);
  25.  
  26. //void (*snd_play)();
  27. void wave_out(char* buff);
  28.  
  29. void play_wave();
  30. void play_mp3();
  31.  
  32. void snd_stop();
  33.