home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 February / PCO_0299.ISO / filesbbs / linux / mikmod-3.000 / mikmod-3 / mikmod-3.1.2 / playercode / mlreg.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-07  |  1.6 KB  |  50 lines

  1. /*    MikMod sound library
  2.     (c) 1998 Miodrag Vallat and others - see file AUTHORS for complete list
  3.  
  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., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18.  
  19. /*==============================================================================
  20.  
  21.   $Id: mlreg.c,v 1.14 1998/12/07 06:00:45 miod Exp $
  22.  
  23.   Routine for registering all loaders in MikMod for the current platform.
  24.  
  25. ==============================================================================*/
  26.  
  27. #ifdef HAVE_CONFIG_H
  28. #include "config.h"
  29. #endif
  30.  
  31. #include <mikmod_internals.h>
  32.  
  33. void MikMod_RegisterAllLoaders(void)
  34. {
  35.     MikMod_RegisterLoader(&load_669);
  36.     MikMod_RegisterLoader(&load_amf);
  37.     MikMod_RegisterLoader(&load_dsm);
  38.     MikMod_RegisterLoader(&load_far);
  39.     MikMod_RegisterLoader(&load_it);
  40.     MikMod_RegisterLoader(&load_mod);
  41.     MikMod_RegisterLoader(&load_med);
  42.     MikMod_RegisterLoader(&load_mtm);
  43.     MikMod_RegisterLoader(&load_s3m);
  44.     MikMod_RegisterLoader(&load_stm);
  45.     MikMod_RegisterLoader(&load_ult);
  46.     MikMod_RegisterLoader(&load_xm);
  47.  
  48.     MikMod_RegisterLoader(&load_m15);
  49. }
  50.