diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-22 14:29:40 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-09-22 14:29:40 +0000 |
commit | 0e7d3d993b4cc1db5e498fa6779386a771f08c97 (patch) | |
tree | 558e87c5ed984fe6fb4375d20499636a0c796cbc /src/input/input_plugin.h | |
parent | a3cdd89faa5fd449b807d2d6a9c818649032003b (diff) | |
download | xine-lib-0e7d3d993b4cc1db5e498fa6779386a771f08c97.tar.gz xine-lib-0e7d3d993b4cc1db5e498fa6779386a771f08c97.tar.bz2 |
API review part I
- bring our beloved xine_t * back (no more const there)
- remove const on some input plugin functions
where the data changes with media (dvd, ...) changes
and is therefore not const
CVS patchset: 2740
CVS date: 2002/09/22 14:29:40
Diffstat (limited to 'src/input/input_plugin.h')
-rw-r--r-- | src/input/input_plugin.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/input_plugin.h b/src/input/input_plugin.h index 039f11962..360cd9447 100644 --- a/src/input/input_plugin.h +++ b/src/input/input_plugin.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: input_plugin.h,v 1.30 2002/09/06 18:13:11 mroi Exp $ + * $Id: input_plugin.h,v 1.31 2002/09/22 14:29:40 mroi Exp $ */ #ifndef HAVE_INPUT_PLUGIN_H @@ -199,7 +199,7 @@ struct input_plugin_s * ls function * return value: NULL => filename is a file, **char=> filename is a dir */ - const xine_mrl_t *const * (*get_dir) (input_plugin_t *this, const char *filename, int *nFiles); + xine_mrl_t ** (*get_dir) (input_plugin_t *this, const char *filename, int *nFiles); /* @@ -246,7 +246,7 @@ struct input_plugin_s * generate autoplay list * return value: list of MRLs */ - const char *const * (*get_autoplay_list) (input_plugin_t *this, int *nFiles); + char ** (*get_autoplay_list) (input_plugin_t *this, int *nFiles); /* |