summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/demuxers/group_games.c3
-rw-r--r--src/demuxers/group_games.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/demuxers/group_games.c b/src/demuxers/group_games.c
index b6119dc49..33bd757dd 100644
--- a/src/demuxers/group_games.c
+++ b/src/demuxers/group_games.c
@@ -19,7 +19,7 @@
*
* This file contains plugin entries for several demuxers used in games
*
- * $Id: group_games.c,v 1.8 2004/01/12 17:35:15 miguelfreitas Exp $
+ * $Id: group_games.c,v 1.9 2004/02/13 13:48:03 tmmm Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -47,5 +47,6 @@ plugin_info_t xine_plugin_info[] = {
{ PLUGIN_DEMUX, 24, "film", XINE_VERSION_CODE, NULL, demux_film_init_plugin },
{ PLUGIN_DEMUX, 24, "smjpeg", XINE_VERSION_CODE, NULL, demux_smjpeg_init_plugin },
{ PLUGIN_DEMUX, 24, "fourxm", XINE_VERSION_CODE, NULL, demux_fourxm_init_plugin },
+ { PLUGIN_DEMUX, 24, "vmd", XINE_VERSION_CODE, NULL, demux_vmd_init_plugin },
{ PLUGIN_NONE, 0, "", 0, NULL, NULL }
};
diff --git a/src/demuxers/group_games.h b/src/demuxers/group_games.h
index ced46c193..a2e8ef254 100644
--- a/src/demuxers/group_games.h
+++ b/src/demuxers/group_games.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: group_games.h,v 1.2 2003/10/06 15:46:20 mroi Exp $
+ * $Id: group_games.h,v 1.3 2004/02/13 13:48:03 tmmm Exp $
*/
#ifndef HAVE_GROUP_GAMES_H
@@ -35,5 +35,6 @@ void *demux_str_init_plugin (xine_t *xine, void *data);
void *demux_film_init_plugin (xine_t *xine, void *data);
void *demux_smjpeg_init_plugin (xine_t *xine, void *data);
void *demux_fourxm_init_plugin (xine_t *xine, void *data);
+void *demux_vmd_init_plugin (xine_t *xine, void *data);
#endif