diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-11 19:04:47 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-12-11 19:04:47 +0100 |
commit | bebea7e1e218eed9e72dac3c7c2934f16c96f4a4 (patch) | |
tree | 71f2cb804b77ac246d3d166d358b01154d12622e /src/demuxers/demux.h | |
parent | f7cbfdf9575df64a5ba6f594912ae18c45a1058e (diff) | |
download | xine-lib-bebea7e1e218eed9e72dac3c7c2934f16c96f4a4.tar.gz xine-lib-bebea7e1e218eed9e72dac3c7c2934f16c96f4a4.tar.bz2 |
Transform get_extensions and get_mimetypes into strings.
Please note that this commit temporarily breaks building.
Diffstat (limited to 'src/demuxers/demux.h')
-rw-r--r-- | src/demuxers/demux.h | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/demuxers/demux.h b/src/demuxers/demux.h index c9597463b..b666ee2cc 100644 --- a/src/demuxers/demux.h +++ b/src/demuxers/demux.h @@ -70,20 +70,19 @@ struct demux_class_s { */ const char *textdomain; - /* - * return MIME types supported for this plugin + /** + * @brief MIME types supported for this plugin */ - const char* (*get_mimetypes) (demux_class_t *this); + const char* mimetypes; - /* - * return ' ' seperated list of file extensions this - * demuxer is likely to handle - * (will be used to filter media files in - * file selection dialogs) + /** + * @brief space separated list of file extensions this demuxer is + * likely to handle + * + * (will be used to filter media files in file selection dialogs) */ - - const char* (*get_extensions) (demux_class_t *this); + const char* extensions; /* * close down, free all resources |