Mercurial > mplayer.hg
view libmpdemux/opt-reg.c @ 5842:d6eab895c742
Avoid stdcall on cygwin, it causes undefined ref, code needs testing as I have no athlon or k6-2.
author | atmos4 |
---|---|
date | Fri, 26 Apr 2002 19:14:47 +0000 |
parents | d0c2c8af46b4 |
children | f0b933918a22 |
line wrap: on
line source
#include "config.h" #include <stdlib.h> #include <stdio.h> #include "../cfgparser.h" extern void demux_audio_register_options(m_config_t* cfg); extern void demuxer_register_options(m_config_t* cfg); void libmpdemux_register_options(m_config_t* cfg) { demux_audio_register_options(cfg); demuxer_register_options(cfg); }