comparison src/console/gme_type_list.cxx @ 316:fb513e10174e trunk

[svn] - merge libconsole-blargg into mainline libconsole: + obsoletes plugins-ugly:sapplug
author nenolod
date Thu, 30 Nov 2006 19:54:33 -0800
parents
children
comparison
equal deleted inserted replaced
315:2294f3a6f136 316:fb513e10174e
1 // Game_Music_Emu 0.5.1. http://www.slack.net/~ant/
2
3 // separate file to avoid linking all emulators if this is not used
4
5 #include "gme.h"
6
7 /* Copyright (C) 2006 Shay Green. This module is free software; you
8 can redistribute it and/or modify it under the terms of the GNU Lesser
9 General Public License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version. This
11 module is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
14 details. You should have received a copy of the GNU Lesser General Public
15 License along with this module; if not, write to the Free Software Foundation,
16 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */
17
18 #include "blargg_source.h"
19
20 gme_type_t const* gme_type_list()
21 {
22 static gme_type_t const gme_type_list_ [] =
23 {
24 gme_ay_type,
25 gme_gbs_type,
26 gme_gym_type,
27 gme_hes_type,
28 gme_kss_type,
29 gme_nsf_type,
30 gme_nsfe_type,
31 gme_sap_type,
32 gme_spc_type,
33 gme_vgm_type,
34 gme_vgz_type,
35 0
36 };
37 return gme_type_list_;
38 }