mlreg.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:2k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* MikMod sound library
  2. (c) 1998, 1999 Miodrag Vallat and others - see file AUTHORS for
  3. complete list.
  4. This library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of
  7. the License, or (at your option) any later version.
  8.  
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. GNU Library General Public License for more details.
  13.  
  14. You should have received a copy of the GNU Library General Public
  15. License along with this library; if not, write to the Free Software
  16. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  17. 02111-1307, USA.
  18. */
  19. /*==============================================================================
  20.   $Id: mlreg.c,v 1.2 2004/01/28 00:49:56 raph Exp $
  21.   Routine for registering all loaders in libmikmod for the current platform.
  22. ==============================================================================*/
  23. #ifdef HAVE_CONFIG_H
  24. #include "config.h"
  25. #endif
  26. #include "mikmod_internals.h"
  27. void MikMod_RegisterAllLoaders_internal(void)
  28. {
  29. _mm_registerloader(&load_669);
  30. _mm_registerloader(&load_amf);
  31. _mm_registerloader(&load_asy);
  32. _mm_registerloader(&load_dsm);
  33. _mm_registerloader(&load_far);
  34. _mm_registerloader(&load_gdm);
  35. _mm_registerloader(&load_it);
  36. _mm_registerloader(&load_imf);
  37. _mm_registerloader(&load_mod);
  38. _mm_registerloader(&load_med);
  39. _mm_registerloader(&load_mtm);
  40. _mm_registerloader(&load_okt);
  41. _mm_registerloader(&load_s3m);
  42. _mm_registerloader(&load_stm);
  43. _mm_registerloader(&load_stx);
  44. _mm_registerloader(&load_ult);
  45. _mm_registerloader(&load_uni);
  46. _mm_registerloader(&load_xm);
  47. _mm_registerloader(&load_m15);
  48. }
  49. void MikMod_RegisterAllLoaders(void)
  50. {
  51. MUTEX_LOCK(lists);
  52. MikMod_RegisterAllLoaders_internal();
  53. MUTEX_UNLOCK(lists);
  54. }
  55. /* ex:set ts=4: */